diff options
Diffstat (limited to 'print/luatex/patches/patch-ac')
-rw-r--r-- | print/luatex/patches/patch-ac | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/print/luatex/patches/patch-ac b/print/luatex/patches/patch-ac new file mode 100644 index 00000000000..f46f4f1d1c5 --- /dev/null +++ b/print/luatex/patches/patch-ac @@ -0,0 +1,23 @@ +$NetBSD: patch-ac,v 1.1 2010/09/13 04:12:48 minskim Exp $ + +--- texk/web2c/luatexdir/lua51/luaconf.h.orig 2010-09-09 09:10:53.000000000 +0000 ++++ texk/web2c/luatexdir/lua51/luaconf.h +@@ -100,7 +100,9 @@ + ".\\?.dll;" LUA_CDIR"?.dll;" LUA_CDIR"loadall.dll" + + #else ++#ifndef LUA_ROOT + #define LUA_ROOT "/usr/local/" ++#endif + #define LUA_LDIR LUA_ROOT "share/lua/5.1/" + #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" + #define LUA_PATH_DEFAULT \ +@@ -189,7 +191,7 @@ + #define LUAI_DATA /* empty */ + + #elif defined(__GNUC__) && ((__GNUC__*100 + __GNUC_MINOR__) >= 302) && \ +- defined(__ELF__) ++ defined(__ELF__) && !defined(__sun__) + #define LUAI_FUNC __attribute__((visibility("hidden"))) extern + #define LUAI_DATA LUAI_FUNC + |