aboutsummaryrefslogtreecommitdiff
path: root/databases/redis/files/extra-patch-src-function_lua.c
diff options
context:
space:
mode:
Diffstat (limited to 'databases/redis/files/extra-patch-src-function_lua.c')
-rw-r--r--databases/redis/files/extra-patch-src-function_lua.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/databases/redis/files/extra-patch-src-function_lua.c b/databases/redis/files/extra-patch-src-function_lua.c
deleted file mode 100644
index 29be5e28e8f5..000000000000
--- a/databases/redis/files/extra-patch-src-function_lua.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/function_lua.c.orig 2022-01-31 10:49:57 UTC
-+++ src/function_lua.c
-@@ -52,6 +52,10 @@
- #define LIBRARY_API_NAME "__LIBRARY_API__"
- #define LOAD_TIMEOUT_MS 500
-
-+#ifndef lua_unref
-+#define lua_unref(L,ref) luaL_unref(L, LUA_REGISTRYINDEX, (ref))
-+#endif
-+
- /* Lua engine ctx */
- typedef struct luaEngineCtx {
- lua_State *lua;