summaryrefslogtreecommitdiffstats
path: root/lua-5.1.4-lunatic.patch
diff options
context:
space:
mode:
Diffstat (limited to 'lua-5.1.4-lunatic.patch')
-rw-r--r--lua-5.1.4-lunatic.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/lua-5.1.4-lunatic.patch b/lua-5.1.4-lunatic.patch
deleted file mode 100644
index 70315b2..0000000
--- a/lua-5.1.4-lunatic.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/loadlib.c.orig 2010-02-09 16:58:47.000000000 -0600
-+++ src/loadlib.c 2010-02-09 16:59:12.000000000 -0600
-@@ -66,7 +66,7 @@
-
-
- static void *ll_load (lua_State *L, const char *path) {
-- void *lib = dlopen(path, RTLD_NOW);
-+ void *lib = dlopen(path, RTLD_NOW|RTLD_GLOBAL);
- if (lib == NULL) lua_pushstring(L, dlerror());
- return lib;
- }