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/pposix.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/pposix.c')
-rw-r--r-- | util-src/pposix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index 62bd0339..49e80f71 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -35,6 +35,10 @@ #include "lualib.h" #include "lauxlib.h" +#if (LUA_VERSION_NUM == 502) +#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0) +#endif + #include <fcntl.h> #if defined(__linux__) && defined(_GNU_SOURCE) #include <linux/falloc.h> |