summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-10-21 00:15:18 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-10-21 00:15:18 +0000
commit177e36f61fed220e941039108f2df66f33e7b125 (patch)
tree32702852c7a754d2e214c9c3ce0e68cae93a0940 /news
parentRemoved erroneous ${DESTDIR} that I put in Makefile pre-/post- targets. (diff)
Fix build on current (comment out bogus duplicate declarations)
Notes
Notes: svn path=/head/; revision=68450
Diffstat (limited to 'news')
-rw-r--r--news/gup/files/patch-ab15
-rw-r--r--news/gup/files/patch-ad20
2 files changed, 31 insertions, 4 deletions
diff --git a/news/gup/files/patch-ab b/news/gup/files/patch-ab
index 4da3b19ed584..10dcd052dcec 100644
--- a/news/gup/files/patch-ab
+++ b/news/gup/files/patch-ab
@@ -1,10 +1,17 @@
---- rfc822.h.orig Sun May 9 12:53:24 1999
-+++ rfc822.h Sun May 9 12:53:58 1999
-@@ -246,7 +246,6 @@
+--- rfc822.h.orig Sun Oct 20 16:57:18 2002
++++ rfc822.h Sun Oct 20 16:57:33 2002
+@@ -243,12 +243,14 @@
+ extern char *strerror();
+
+ /* Variables and routines that Unix(tm) provides. */
++#ifndef __FreeBSD__
extern int errno;
extern int sys_nerr;
extern int optind;
--extern char *sys_errlist[];
+ extern char *sys_errlist[];
extern char **environ;
extern char *optarg;
++#endif
+ #ifdef HAVE_UNISTD
+ #include <unistd.h>
diff --git a/news/gup/files/patch-ad b/news/gup/files/patch-ad
new file mode 100644
index 000000000000..b12f3770a258
--- /dev/null
+++ b/news/gup/files/patch-ad
@@ -0,0 +1,20 @@
+--- gup.c.orig Sun Oct 20 16:55:33 2002
++++ gup.c Sun Oct 20 16:55:50 2002
+@@ -37,7 +37,7 @@
+
+
+ char *progname = "gup"; /* GC */
+-FILE *log_fp = stderr;
++FILE *log_fp;
+
+ static char *usage =
+ "\n\
+@@ -165,6 +165,8 @@
+
+ int changed;
+
++ log_fp = stderr;
++
+ umask(UMASK);
+
+ parse_options(argc, argv); /* Decode our command line options */