diff options
author | Kim Alvefur <zash@zash.se> | 2015-04-26 12:38:37 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-04-26 12:38:37 +0200 |
commit | ddeed6873e5d6b759da52de91c23c8ea1224f217 (patch) | |
tree | 48f9ee8f36121df679a3ab395e433e2a8b994c3d /util-src/windows.c | |
parent | db2152e88814ad5ad29533c5adb3aeba746e1c76 (diff) | |
download | prosody-ddeed6873e5d6b759da52de91c23c8ea1224f217.tar.gz prosody-ddeed6873e5d6b759da52de91c23c8ea1224f217.zip |
util-src/*.c: Invert Lua 5.2 compat to be 5.2+ by default and a macro to support 5.1
Diffstat (limited to 'util-src/windows.c')
-rw-r--r-- | util-src/windows.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util-src/windows.c b/util-src/windows.c index aaa07407..4fcbf21e 100644 --- a/util-src/windows.c +++ b/util-src/windows.c @@ -19,8 +19,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 static int Lget_nameservers(lua_State* L) { @@ -104,7 +104,7 @@ static const luaL_Reg Reg[] = { LUALIB_API int luaopen_util_windows(lua_State* L) { lua_newtable(L); - luaL_register(L, NULL, Reg); + luaL_setfuncs(L, Reg, 0); lua_pushliteral(L, "-3.14"); lua_setfield(L, -2, "version"); return 1; |