diff options
author | Kim Alvefur <zash@zash.se> | 2014-09-17 14:30:29 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-09-17 14:30:29 +0200 |
commit | 8affcc3ff7d35ca73fe748418046bec386496cd2 (patch) | |
tree | 341cdc51552c918b49129cd566b2c7b1726bcc46 /util-src/windows.c | |
parent | 4f6f0fe48047cf1832061f52aa96b9df5d9460fa (diff) | |
download | prosody-8affcc3ff7d35ca73fe748418046bec386496cd2.tar.gz prosody-8affcc3ff7d35ca73fe748418046bec386496cd2.zip |
util-src/*.c: Add macro for compiling with Lua 5.2
Diffstat (limited to 'util-src/windows.c')
-rw-r--r-- | util-src/windows.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util-src/windows.c b/util-src/windows.c index a209539f..37f850e3 100644 --- a/util-src/windows.c +++ b/util-src/windows.c @@ -19,6 +19,10 @@ #include "lua.h" #include "lauxlib.h" +#if (LUA_VERSION_NUM == 502) +#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0) +#endif + static int Lget_nameservers(lua_State *L) { char stack_buffer[1024]; // stack allocated buffer IP4_ARRAY* ips = (IP4_ARRAY*) stack_buffer; |