aboutsummaryrefslogtreecommitdiffstats
path: root/community/lua-hiredis/0001-lua-5-3-compatibility.patch
blob: c7bab778bb20e0a09e1342c2c3df719aafbec5b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/lua-hiredis.c b/src/lua-hiredis.c
index f8b2fdf..8cd7c56 100644
--- a/src/lua-hiredis.c
+++ b/src/lua-hiredis.c
@@ -8,6 +8,15 @@ extern "C" {
 #endif
 
 #include <lua.h>
+
+// Lua 5.2 compatibility 
+#if LUA_VERSION_NUM > 501
+#define luaL_reg luaL_Reg
+#define LUA_COMPAT_MODULE
+#define LUA_COMPAT_APIINTCASTS
+#endif
+
+
 #include <lauxlib.h>
 
 #if defined (__cplusplus)