mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
Merge pull request #165 from OrfeasZ/utf8-lib-support
Support for Lua 5.3 UTF8 Library
This commit is contained in:
commit
0dcc879ce6
|
@ -41,6 +41,7 @@ namespace sol {
|
|||
io,
|
||||
ffi,
|
||||
jit,
|
||||
utf8,
|
||||
count
|
||||
};
|
||||
|
||||
|
@ -183,6 +184,12 @@ namespace sol {
|
|||
luaL_requiref(L, "debug", luaopen_debug, 1);
|
||||
lua_pop(L, 1);
|
||||
break;
|
||||
case lib::utf8:
|
||||
#if SOL_LUA_VERSION > 502 && !defined(SOL_LUAJIT)
|
||||
luaL_requiref(L, "utf8", luaopen_utf8, 1);
|
||||
lua_pop(L, 1);
|
||||
#endif // Lua 5.3+ only
|
||||
break;
|
||||
case lib::ffi:
|
||||
#ifdef SOL_LUAJIT
|
||||
luaL_requiref(L, "ffi", luaopen_ffi, 1);
|
||||
|
|
Loading…
Reference in New Issue
Block a user