diff options
Diffstat (limited to 'www/libwww/patches')
-rw-r--r-- | www/libwww/patches/patch-aa | 10 | ||||
-rw-r--r-- | www/libwww/patches/patch-ab | 33 | ||||
-rw-r--r-- | www/libwww/patches/patch-ac | 22 | ||||
-rw-r--r-- | www/libwww/patches/patch-ae | 18 |
4 files changed, 45 insertions, 38 deletions
diff --git a/www/libwww/patches/patch-aa b/www/libwww/patches/patch-aa index d48c96a704a..2820527db82 100644 --- a/www/libwww/patches/patch-aa +++ b/www/libwww/patches/patch-aa @@ -1,13 +1,11 @@ -$NetBSD: patch-aa,v 1.2 1998/08/07 11:14:23 agc Exp $ +$NetBSD: patch-aa,v 1.3 1999/10/08 04:43:07 deberg Exp $ ---- Library/src/HTMIMImp.c.orig Sat Apr 5 09:26:21 1997 -+++ Library/src/HTMIMImp.c Tue May 6 01:15:02 1997 -@@ -213,7 +213,7 @@ - int value = deflt; +--- Library/src/HTMIMImp.c.orig Thu May 27 16:26:50 1999 ++++ Library/src/HTMIMImp.c Thu May 27 16:26:58 1999 +@@ -227,5 +227,5 @@ if (start != NULL) { start += strlen(needle); - while isspace(*start) start++; + while (isspace(*start)) start++; if (isdigit(*start)) { char * end = start + 1; - char save; diff --git a/www/libwww/patches/patch-ab b/www/libwww/patches/patch-ab index 6130001d353..fd539113877 100644 --- a/www/libwww/patches/patch-ab +++ b/www/libwww/patches/patch-ab @@ -1,20 +1,29 @@ -$NetBSD: patch-ab,v 1.3 1998/08/07 11:14:23 agc Exp $ +$NetBSD: patch-ab,v 1.4 1999/10/08 04:43:07 deberg Exp $ ---- configure.orig Tue Jul 14 07:36:55 1998 -+++ configure Tue Jul 14 07:38:11 1998 -@@ -1432,6 +1432,7 @@ - echo "$ac_t""no" 1>&6 +--- configure.orig Thu May 27 16:41:53 1999 ++++ configure Thu May 27 16:48:05 1999 +@@ -2014,5 +2014,5 @@ fi +- +if false; then + # Check for any special flags to pass to ltconfig. + # +@@ -2242,4 +2242,5 @@ + libtool_flags="$libtool_flags --disable-lock" + fi ++fi + + +@@ -2293,4 +2294,5 @@ + + ++if false; then + # Actually configure libtool. ac_aux_dir is where install-sh is found. + CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ +@@ -2316,4 +2318,5 @@ # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' - -@@ -1477,6 +1478,7 @@ - ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \ - $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \ - || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } +fi - echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 - echo "configure:1483: checking whether ${MAKE-make} sets \${MAKE}" >&5 + # Redirect the config.log output again, so that the ltconfig log is not diff --git a/www/libwww/patches/patch-ac b/www/libwww/patches/patch-ac index 81e23b30ff2..28c2a131115 100644 --- a/www/libwww/patches/patch-ac +++ b/www/libwww/patches/patch-ac @@ -1,13 +1,13 @@ -$NetBSD: patch-ac,v 1.4 1998/11/13 00:01:21 frueauf Exp $ +$NetBSD: patch-ac,v 1.5 1999/10/08 04:43:07 deberg Exp $ ---- Library/src/HTML.c.orig Mon Sep 14 21:59:03 1998 -+++ Library/src/HTML.c Mon Sep 14 21:59:13 1998 -@@ -22,7 +22,7 @@ - #include "WWWUtil.h" - #include "WWWCore.h" - #include "WWWHTML.h" --#include "HText.h" -+#include "HTextImp.h" - #include "HTStyle.h" - #include "HTML.h" +--- Makefile.in.dist Tue Jun 15 11:48:46 1999 ++++ Makefile.in Tue Jun 15 11:48:57 1999 +@@ -56,7 +56,7 @@ + INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_DATA = @INSTALL_DATA@ +-INSTALL_SCRIPT = @INSTALL_SCRIPT@ ++INSTALL_SCRIPT = ${BSD_INSTALL_SCRIPT} + INSTALL_STRIP_FLAG = + transform = @program_transform_name@ diff --git a/www/libwww/patches/patch-ae b/www/libwww/patches/patch-ae index 63f2fac0555..6211aa817e4 100644 --- a/www/libwww/patches/patch-ae +++ b/www/libwww/patches/patch-ae @@ -1,13 +1,13 @@ -$NetBSD: patch-ae,v 1.2 1998/08/07 11:14:24 agc Exp $ +$NetBSD: patch-ae,v 1.3 1999/10/08 04:43:07 deberg Exp $ ---- Library/src/HTStyle.c.orig Tue Apr 30 16:31:55 1996 -+++ Library/src/HTStyle.c Wed Jun 18 18:34:01 1997 -@@ -19,6 +19,8 @@ - #include "HTString.h" +--- Library/src/HTStyle.c.orig Wed Oct 6 23:16:43 1999 ++++ Library/src/HTStyle.c Wed Oct 6 23:16:35 1999 +@@ -18,6 +18,8 @@ + #include "WWWUtil.h" #include "HTStyle.h" -+PUBLIC HTStyleSheet * styleSheet; /* application-wide style sheet */ ++PUBLIC HTStyleSheet * styleSheet; /* application-wide style sheet */ + - - /* Local definition of style - ** ------------------------- + struct _HTStyle { + char * name; /* Style name */ + int element; /* Element (if any) that this style applies to */ |