util-src/*.c: Add macro for compiling with Lua 5.2

This commit is contained in:
Kim Alvefur 2014-09-17 14:30:29 +02:00
parent 4f6f0fe480
commit 8affcc3ff7
6 changed files with 24 additions and 0 deletions

View file

@ -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;