mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util-src: Make C modules assert that the Lua runtime matches what it was compiled for
This commit is contained in:
parent
ef391bf6c4
commit
5b10d245e3
9 changed files with 27 additions and 0 deletions
|
@ -103,6 +103,9 @@ static const luaL_Reg Reg[] = {
|
|||
};
|
||||
|
||||
LUALIB_API int luaopen_util_windows(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
lua_newtable(L);
|
||||
luaL_setfuncs(L, Reg, 0);
|
||||
lua_pushliteral(L, "-3.14");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue