bug-fix update to 0.11.6 + one post-release crash fix.

This commit is contained in:
sthen 2009-06-16 23:17:33 +00:00
parent a4044d506f
commit 77bace9a9a
4 changed files with 26 additions and 11 deletions

View File

@ -1,7 +1,7 @@
# $OpenBSD: Makefile,v 1.12 2008/12/30 10:29:09 sthen Exp $
# $OpenBSD: Makefile,v 1.13 2009/06/16 23:17:33 sthen Exp $
COMMENT= full-featured text WWW browser
DISTNAME= elinks-0.11.5
DISTNAME= elinks-0.11.6
CATEGORIES= www
MASTER_SITES= http://elinks.cz/download/

View File

@ -1,5 +1,5 @@
MD5 (elinks-0.11.5.tar.gz) = 3+tNhBThE8EJffNFkqFbDA==
RMD160 (elinks-0.11.5.tar.gz) = 3O21EzXmNrRcflHm4p7jlMyxsLk=
SHA1 (elinks-0.11.5.tar.gz) = s0t0q/9o6egeYery/xt99m9Cz6A=
SHA256 (elinks-0.11.5.tar.gz) = SiBXew9lSUmPPzEx6nAc7r1+GkAwL0AGs7y4Vl5uNIo=
SIZE (elinks-0.11.5.tar.gz) = 3946186
MD5 (elinks-0.11.6.tar.gz) = /YXB841OLajlm2CIajCoQw==
RMD160 (elinks-0.11.6.tar.gz) = TtUeUIqn/aDdBno9bi8EtHgainQ=
SHA1 (elinks-0.11.6.tar.gz) = Os1a5sBPDfvYlBInGlgKPEh6pcA=
SHA256 (elinks-0.11.6.tar.gz) = j3fr+iLIfRW3OllVdSx8Uv4zg8xyylFQ0nDjQKg44+0=
SIZE (elinks-0.11.6.tar.gz) = 3939259

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-configure,v 1.4 2008/12/30 10:29:09 sthen Exp $
--- configure.orig Sat Sep 20 22:13:19 2008
+++ configure Mon Dec 29 21:45:53 2008
$OpenBSD: patch-configure,v 1.5 2009/06/16 23:17:33 sthen Exp $
--- configure.orig Sat Mar 21 12:50:25 2009
+++ configure Wed Jun 17 00:08:56 2009
@@ -17596,7 +17596,7 @@ if test -z "$disable_lua"; then
for luadir in "$withval" "" /usr /usr/local; do
for suffix in "" 50; do
@ -10,7 +10,7 @@ $OpenBSD: patch-configure,v 1.4 2008/12/30 10:29:09 sthen Exp $
if test ! -z "$luadir"; then
LUA_LIBS="-L$luadir/lib $LUA_LIBS"
@@ -23296,10 +23296,6 @@ ALL_CFLAGS="$CFLAGS $CPPFLAGS"
@@ -23294,10 +23294,6 @@ ALL_CFLAGS="$CFLAGS $CPPFLAGS"

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-src_session_session_c,v 1.1 2009/06/16 23:17:33 sthen Exp $
from upstream; bug 1077, crash opening "javascript:" link in new tab
--- src/session/session.c.orig Sat Mar 21 12:31:54 2009
+++ src/session/session.c Wed Jun 17 00:11:17 2009
@@ -825,6 +825,8 @@ setup_session(struct session *ses, struct uri *uri, st
destroy_vs(vs, 1);
copy_vs(vs, base->doc_view->vs);
+ ses->doc_view->vs = vs;
+ vs->doc_view = ses->doc_view;
}
}