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
|
@ -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[]=
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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[] = {
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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