diff options
author | garbled <garbled> | 1998-08-23 06:08:50 +0000 |
---|---|---|
committer | garbled <garbled> | 1998-08-23 06:08:50 +0000 |
commit | 6d2fe1c5c649612b4c93651c498d3c5d76fe2504 (patch) | |
tree | 9648ee8a43ce71d1bf15c80af488736548ed2942 /net/wu-ftpd | |
parent | fe97f29f233702601aef4d5d54a03dc0f5d4c525 (diff) | |
download | pkgsrc-6d2fe1c5c649612b4c93651c498d3c5d76fe2504.tar.gz |
Fix building of this pkg on alpha. Fixes PR 5769 (Tim Rightnour)
Diffstat (limited to 'net/wu-ftpd')
-rw-r--r-- | net/wu-ftpd/patches/patch-ah | 7 | ||||
-rw-r--r-- | net/wu-ftpd/patches/patch-ai | 11 | ||||
-rw-r--r-- | net/wu-ftpd/patches/patch-aj | 7 | ||||
-rw-r--r-- | net/wu-ftpd/patches/patch-ak | 8 |
4 files changed, 33 insertions, 0 deletions
diff --git a/net/wu-ftpd/patches/patch-ah b/net/wu-ftpd/patches/patch-ah new file mode 100644 index 00000000000..46306834195 --- /dev/null +++ b/net/wu-ftpd/patches/patch-ah @@ -0,0 +1,7 @@ +$NetBSD: patch-ah,v 1.3 1998/08/23 06:08:50 garbled Exp $ +--- support/authuser.c.orig Mon Jul 13 02:46:20 1998 ++++ support/authuser.c Mon Jul 13 02:46:47 1998 +@@ -11,2 +11,3 @@ + #endif ++#include <string.h> + #include <stdio.h> diff --git a/net/wu-ftpd/patches/patch-ai b/net/wu-ftpd/patches/patch-ai new file mode 100644 index 00000000000..2b928b6deea --- /dev/null +++ b/net/wu-ftpd/patches/patch-ai @@ -0,0 +1,11 @@ +$NetBSD: patch-ai,v 1.3 1998/08/23 06:08:50 garbled Exp $ +--- src/ftpd.c.orig Mon Jul 13 03:00:10 1998 ++++ src/ftpd.c Mon Jul 13 02:58:45 1998 +@@ -2847,4 +2847,5 @@ + /* send a line...(note that this overrides dolreplies!) */ +- vreply(USE_REPLY_LONG | USE_REPLY_NOTFMT, n, ptr, 0); +- ++ VA_START(fmt); ++ vreply(USE_REPLY_LONG | USE_REPLY_NOTFMT, n, ptr, ap); ++ VA_END; /* *NEVER* send a 0 as an ap, some machines use a *struct* for a va_list! */ + if (p) diff --git a/net/wu-ftpd/patches/patch-aj b/net/wu-ftpd/patches/patch-aj new file mode 100644 index 00000000000..fc78dc5f74c --- /dev/null +++ b/net/wu-ftpd/patches/patch-aj @@ -0,0 +1,7 @@ +$NetBSD: patch-aj,v 1.1 1998/08/23 06:08:51 garbled Exp $ +--- support/ftw.c.orig Mon Jul 13 03:05:49 1998 ++++ support/ftw.c Mon Jul 13 03:06:03 1998 +@@ -32,2 +32,3 @@ + ++#include <string.h> + #include <sys/param.h> diff --git a/net/wu-ftpd/patches/patch-ak b/net/wu-ftpd/patches/patch-ak new file mode 100644 index 00000000000..943f365f23b --- /dev/null +++ b/net/wu-ftpd/patches/patch-ak @@ -0,0 +1,8 @@ +$NetBSD: patch-ak,v 1.1 1998/08/23 06:08:51 garbled Exp $ +--- src/ckconfig.c.orig Mon Jul 13 03:13:37 1998 ++++ src/ckconfig.c Mon Jul 13 03:14:44 1998 +@@ -35,2 +35,4 @@ + #endif ++ ++#include <string.h> + #include <stdio.h> |