diff options
author | recht <recht@pkgsrc.org> | 2004-01-22 11:09:54 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-01-22 11:09:54 +0000 |
commit | aa438840d8d10e691f0e482f6f594a66bd8a0a80 (patch) | |
tree | c2e875d010611aeeecbd17fc5e731642f0b64d8e /www/elinks04/patches | |
parent | afe8dc10283cddc0d1e0861b858fa1bb34f4dfe2 (diff) | |
download | pkgsrc-aa438840d8d10e691f0e482f6f594a66bd8a0a80.tar.gz |
reimport of ELinks 0.4.3 after the 0.9.0
ELinks is an advanced and well-established text-mode web (HTTP/FTP/..) browser
with a wide range of additional features and extensibility by the possibility
to plug in own scripts in Lua language. This project aims to provide
feature-rich version of Links, with more open patches/features inclusion
policy. This OpenSource project is covered by the GNU General Public License.
Diffstat (limited to 'www/elinks04/patches')
-rw-r--r-- | www/elinks04/patches/patch-aa | 22 | ||||
-rw-r--r-- | www/elinks04/patches/patch-ab | 15 | ||||
-rw-r--r-- | www/elinks04/patches/patch-ac | 13 |
3 files changed, 50 insertions, 0 deletions
diff --git a/www/elinks04/patches/patch-aa b/www/elinks04/patches/patch-aa new file mode 100644 index 00000000000..46caf955585 --- /dev/null +++ b/www/elinks04/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1.1.1 2004/01/22 11:09:54 recht Exp $ + +--- configure.orig 2003-12-13 18:28:39.000000000 -0800 ++++ configure 2003-12-13 18:30:09.000000000 -0800 +@@ -4262,7 +4262,7 @@ + if test "$xyz_piggyswitch" = "cow"; then + LIBS="-llua40 -llualib40 -lm $LIBS_X" + else +- LIBS="-llua -llualib -lm $LIBS_X" ++ LIBS="-llua4 -llualib4 -lm $LIBS_X" + fi + + if test ! -z "$luadir"; then +@@ -4280,7 +4280,7 @@ + cat > conftest.$ac_ext <<EOF + #line 4282 "configure" + #include "confdefs.h" +-#include <lua.h> ++#include <lua4.h> + int main() { + lua_open(0) + ; return 0; } diff --git a/www/elinks04/patches/patch-ab b/www/elinks04/patches/patch-ab new file mode 100644 index 00000000000..c0a6f0ccf89 --- /dev/null +++ b/www/elinks04/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1.1.1 2004/01/22 11:09:54 recht Exp $ + +--- src/lua/core.c.orig ++++ src/lua/core.c +@@ -15,8 +15,8 @@ + #include <unistd.h> + #endif + +-#include <lua.h> +-#include <lualib.h> ++#include <lua4.h> ++#include <lualib4.h> + + #include "elinks.h" + diff --git a/www/elinks04/patches/patch-ac b/www/elinks04/patches/patch-ac new file mode 100644 index 00000000000..f03ab3562f9 --- /dev/null +++ b/www/elinks04/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1.1.1 2004/01/22 11:09:54 recht Exp $ + +--- src/lua/core.h.orig ++++ src/lua/core.h +@@ -5,7 +5,7 @@ + + #ifdef HAVE_LUA + +-#include <lua.h> /* This is standart include. */ ++#include <lua4.h> /* This is standart include. */ + #include "document/session.h" + + extern lua_State *lua_state; |