summaryrefslogtreecommitdiff
path: root/repo/luajit/module-paths.patch
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/luajit/module-paths.patch
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/luajit/module-paths.patch')
-rw-r--r--repo/luajit/module-paths.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/repo/luajit/module-paths.patch b/repo/luajit/module-paths.patch
new file mode 100644
index 0000000..46e8d12
--- /dev/null
+++ b/repo/luajit/module-paths.patch
@@ -0,0 +1,25 @@
+Add /usr/share/lua/common to LUA_PATH. We use this directory for Lua modules
+that are compatible with Lua 5.1 and newer.
+
+--- a/src/luaconf.h
++++ b/src/luaconf.h
+@@ -42,8 +42,10 @@
+ #ifdef LUA_ROOT
+ #define LUA_JROOT LUA_ROOT
+ #define LUA_RLDIR LUA_ROOT "/share" LUA_LUADIR
++#define LUA_RLDIR2 LUA_ROOT "/share/lua/common/"
+ #define LUA_RCDIR LUA_ROOT "/" LUA_MULTILIB LUA_LUADIR
+ #define LUA_RLPATH ";" LUA_RLDIR "?.lua;" LUA_RLDIR "?/init.lua"
++#define LUA_RLPATH2 ";" LUA_RLDIR2 "?.lua;" LUA_RLDIR2 "?/init.lua"
+ #define LUA_RCPATH ";" LUA_RCDIR "?.so"
+ #else
+ #define LUA_JROOT LUA_LROOT
+@@ -58,7 +60,7 @@
+ #define LUA_LCPATH1 ";" LUA_LCDIR "?.so"
+ #define LUA_LCPATH2 ";" LUA_LCDIR "loadall.so"
+
+-#define LUA_PATH_DEFAULT "./?.lua" LUA_JPATH LUA_LLPATH LUA_RLPATH
++#define LUA_PATH_DEFAULT "./?.lua" LUA_JPATH LUA_LLPATH LUA_RLPATH LUA_RLPATH2
+ #define LUA_CPATH_DEFAULT "./?.so" LUA_LCPATH1 LUA_RCPATH LUA_LCPATH2
+ #endif
+