Oops, forgot to add the luasocket compat hack thing

This commit is contained in:
Bart van Strien
2013-07-10 16:11:39 +02:00
parent f5603b0291
commit e6b029ec90
@@ -0,0 +1,12 @@
#define LUA_COMPAT_ALL
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#if LUA_VERSION_NUM > 501
# define luaL_reg luaL_Reg
# define luaL_putchar(B, c) luaL_addchar(B, c)
# define luaL_typerror(L, n, t) luax_typerror(L, n, t)
extern int luax_typerror(lua_State *L, int narg, const char *type);
#endif