summaryrefslogtreecommitdiff
path: root/www/wwwoffle/patches
diff options
context:
space:
mode:
authorfredb <fredb>2002-04-25 10:43:26 +0000
committerfredb <fredb>2002-04-25 10:43:26 +0000
commit8234836a52a60f547773b5ce0c636910d2bb6883 (patch)
treeb7e5c34427309da02750f262faeb97d3ca575707 /www/wwwoffle/patches
parent4558c1f54de0cd8fe2865b023c4882db708e411c (diff)
downloadpkgsrc-8234836a52a60f547773b5ce0c636910d2bb6883.tar.gz
Update wwwoffle to 2.7b (from NEWS):
Bug Fixes: Ensure that only one argument is given to wwwoffle -o or -O. Some more version 2.7 documentation updates. Fix crash using 'wwwoffle -O|-o|-put|-post <URL>'. Put refresh URLs in the outgoing directory with correct URL. Delete auto-generated files in Makefile before re-generating. Choosing 'edit selected item' in configuration pages shows current values. Fix potential crash with wwwoffle-hash. Put a DESTDIR variable in Makefile for easier installation. Fix parsing IPv6 addresses in audit-usage.pl script. Makefile change for FreeBSD make. Bug fix for the Alias section of the config file. Fix Makefile for Win32. New Features: Allow CGI scripts to be used with the built-in web server.
Diffstat (limited to 'www/wwwoffle/patches')
-rw-r--r--www/wwwoffle/patches/patch-aa10
-rw-r--r--www/wwwoffle/patches/patch-ab14
2 files changed, 5 insertions, 19 deletions
diff --git a/www/wwwoffle/patches/patch-aa b/www/wwwoffle/patches/patch-aa
index 02f9189327a..865abbfa561 100644
--- a/www/wwwoffle/patches/patch-aa
+++ b/www/wwwoffle/patches/patch-aa
@@ -1,13 +1,13 @@
-$NetBSD: patch-aa,v 1.16 2002/03/10 22:14:30 fredb Exp $
+$NetBSD: patch-aa,v 1.17 2002/04/25 10:43:26 fredb Exp $
---- doc/Makefile.in.orig Sun Mar 10 14:14:34 2002
+--- doc/Makefile.in.orig Sun Apr 21 11:53:25 2002
+++ doc/Makefile.in
@@ -22,7 +22,7 @@
prefix=@prefix@
- mandir=@mandir@
--docdir=${prefix}/doc/wwwoffle
-+docdir=${prefix}/share/doc/wwwoffle
+ mandir=$(DESTDIR)@mandir@
+-docdir=$(DESTDIR)${prefix}/doc/wwwoffle
++docdir=$(DESTDIR)${prefix}/share/doc/wwwoffle
SPOOLDIR=@SPOOLDIR@
CONFDIR=@CONFDIR@
diff --git a/www/wwwoffle/patches/patch-ab b/www/wwwoffle/patches/patch-ab
deleted file mode 100644
index 3a47da1c63c..00000000000
--- a/www/wwwoffle/patches/patch-ab
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ab,v 1.5 2002/03/23 22:48:09 fredb Exp $
-
---- src/parse.c.orig Sun Jan 20 04:54:12 2002
-+++ src/parse.c
-@@ -208,7 +208,8 @@
- else
- strcat(url,"?");
-
-- sprintf(url+strlen(url),"!%s:%s.%08lx",(*request_head)->method,MakeHash((*request_body)->content),time(NULL));
-+ if (snprintf(url+strlen(url),40,"!%s:%s.%08lx",(*request_head)->method,MakeHash((*request_body)->content),time(NULL)) >= 40)
-+ {free(url);return(NULL);}
- }
-
- return(url);