aboutsummaryrefslogtreecommitdiffstats
path: root/main/freeswitch/0002-mod_lua-alpine-module-search-path.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/freeswitch/0002-mod_lua-alpine-module-search-path.patch')
-rw-r--r--main/freeswitch/0002-mod_lua-alpine-module-search-path.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/main/freeswitch/0002-mod_lua-alpine-module-search-path.patch b/main/freeswitch/0002-mod_lua-alpine-module-search-path.patch
deleted file mode 100644
index 5a3f3551ea..0000000000
--- a/main/freeswitch/0002-mod_lua-alpine-module-search-path.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/src/mod/languages/mod_lua/lua/luaconf.h.orig
-+++ b/src/mod/languages/mod_lua/lua/luaconf.h
-@@ -101,13 +101,18 @@
-
- #define LUA_VDIR LUA_VERSION_MAJOR "." LUA_VERSION_MINOR "/"
- #define LUA_ROOT "/usr/local/"
-+#define LUA_ROOT2 "/usr/"
- #define LUA_LDIR LUA_ROOT "share/lua/" LUA_VDIR
-+#define LUA_LDIR2 LUA_ROOT2 "share/lua/" LUA_VDIR
- #define LUA_CDIR LUA_ROOT "lib/lua/" LUA_VDIR
-+#define LUA_CDIR2 LUA_ROOT2 "lib/lua/" LUA_VDIR
- #define LUA_PATH_DEFAULT \
- LUA_LDIR"?.lua;" LUA_LDIR"?/init.lua;" \
-- LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua;" "./?.lua"
-+ LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua;" "./?.lua" \
-+ LUA_LDIR2"?.lua;" LUA_LDIR2"?/init.lua"
- #define LUA_CPATH_DEFAULT \
-- LUA_CDIR"?.so;" LUA_CDIR"loadall.so;" "./?.so"
-+ LUA_CDIR"?.so;" LUA_CDIR"loadall.so;" "./?.so" \
-+ LUA_CDIR2"?.so;"
- #endif /* } */
-
-