mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util-src/*.c: Invert Lua 5.2 compat to be 5.2+ by default and a macro to support 5.1
This commit is contained in:
parent
db2152e888
commit
ddeed6873e
6 changed files with 21 additions and 21 deletions
|
@ -26,8 +26,8 @@
|
|||
#include <lua.h>
|
||||
#include <lauxlib.h>
|
||||
|
||||
#if (LUA_VERSION_NUM == 502)
|
||||
#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0)
|
||||
#if (LUA_VERSION_NUM == 501)
|
||||
#define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R)
|
||||
#endif
|
||||
|
||||
/* Enumerate all locally configured IP addresses */
|
||||
|
@ -131,6 +131,6 @@ int luaopen_util_net(lua_State* L) {
|
|||
};
|
||||
|
||||
lua_newtable(L);
|
||||
luaL_register(L, NULL, exports);
|
||||
luaL_setfuncs(L, exports, 0);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue