Browse Source

Oops, forgot to add the luasocket compat hack thing

Bart van Strien 12 years ago
parent
commit
e6b029ec90
1 changed files with 12 additions and 0 deletions
  1. 12 0
      src/libraries/luasocket/libluasocket/lua.h

+ 12 - 0
src/libraries/luasocket/libluasocket/lua.h

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