aboutsummaryrefslogtreecommitdiffstats
path: root/main/lua/lua-5.1-module_paths.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-06-21 06:02:25 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-06-21 06:06:27 +0000
commit054735fd9e37e2b9ce3f2752b658e6d2fffafda7 (patch)
tree9fd3acd02fab7d6c719a06fd8fc378a96693ff94 /main/lua/lua-5.1-module_paths.patch
parent659ace475ea5f55b1faa1a8de4430866bf4b4d85 (diff)
downloadaports-054735fd9e37e2b9ce3f2752b658e6d2fffafda7.tar.bz2
aports-054735fd9e37e2b9ce3f2752b658e6d2fffafda7.tar.xz
main/lua5.1: new aport. symlink 'lua' to this
Diffstat (limited to 'main/lua/lua-5.1-module_paths.patch')
-rw-r--r--main/lua/lua-5.1-module_paths.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/main/lua/lua-5.1-module_paths.patch b/main/lua/lua-5.1-module_paths.patch
deleted file mode 100644
index 29ac4c3bf4..0000000000
--- a/main/lua/lua-5.1-module_paths.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## src_luaconf.h.dpatch by John V. Belmonte <jbelmonte@debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Set Lua's default PATH and CPATH.
-
-@DPATCH@
-diff -urNad trunk~/src/luaconf.h trunk/src/luaconf.h
---- trunk~/src/luaconf.h 2006-02-10 12:44:06.000000000 -0500
-+++ trunk/src/luaconf.h 2006-02-17 21:32:55.000000000 -0500
-@@ -83,13 +83,17 @@
-
- #else
- #define LUA_ROOT "/usr/local/"
-+#define LUA_ROOT2 "/usr/"
- #define LUA_LDIR LUA_ROOT "share/lua/5.1/"
-+#define LUA_LDIR2 LUA_ROOT2 "share/lua/5.1/"
- #define LUA_CDIR LUA_ROOT "lib/lua/5.1/"
-+#define LUA_CDIR2 LUA_ROOT2 "lib/lua/5.1/"
- #define LUA_PATH_DEFAULT \
- "./?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?/init.lua;" \
-- LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua"
-+ LUA_CDIR"?.lua;" LUA_CDIR"?/init.lua;" \
-+ LUA_LDIR2"?.lua;" LUA_LDIR2"?/init.lua"
- #define LUA_CPATH_DEFAULT \
-- "./?.so;" LUA_CDIR"?.so;" LUA_CDIR"loadall.so"
-+ "./?.so;" LUA_CDIR"?.so;" LUA_CDIR2"?.so;" LUA_CDIR"loadall.so"
- #endif
-
-