Software /
code /
prosody
Diff
util-src/pposix.c @ 6413:a552f4170aed
util-src/*.c: Add macro for compiling with Lua 5.2
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 17 Sep 2014 14:30:29 +0200 |
parent | 6411:6c8f6364bc48 |
child | 6615:8e4572a642cb |
line wrap: on
line diff
--- a/util-src/pposix.c Wed Sep 17 02:23:17 2014 +0200 +++ b/util-src/pposix.c Wed Sep 17 14:30:29 2014 +0200 @@ -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>