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

@ -20,6 +20,10 @@
#include "lua.h"
#include "lauxlib.h"
#if (LUA_VERSION_NUM == 502)
#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0)
#endif
/***************** BASE64 *****************/
static const char code[]=

View file

@ -27,6 +27,10 @@ typedef unsigned __int32 uint32_t;
#include <openssl/sha.h>
#include <openssl/md5.h>
#if (LUA_VERSION_NUM == 502)
#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0)
#endif
#define HMAC_IPAD 0x36363636
#define HMAC_OPAD 0x5c5c5c5c

View file

@ -26,6 +26,10 @@
#include <lua.h>
#include <lauxlib.h>
#if (LUA_VERSION_NUM == 502)
#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0)
#endif
/* Enumerate all locally configured IP addresses */
const char * const type_strings[] = {

View file

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

View file

@ -32,6 +32,10 @@
#include "lua.h"
#include "lauxlib.h"
#if (LUA_VERSION_NUM == 502)
#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0)
#endif
#ifndef lsig
#define lsig

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;