mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util-src/*.c: Add macro for compiling with Lua 5.2
This commit is contained in:
parent
4f6f0fe480
commit
8affcc3ff7
6 changed files with 24 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue