summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhubertf <hubertf>2000-10-03 01:35:42 +0000
committerhubertf <hubertf>2000-10-03 01:35:42 +0000
commit1ab3a4c5a5e7ae639d95f23f4bf1cab18d9e6e88 (patch)
treea54a2ca545e86cce7f8cb8a091581b0bf01a8e3e
parente7b3cc353fc9e53061c4ab3f9c2c8ee23670d2a1 (diff)
downloadpkgsrc-1ab3a4c5a5e7ae639d95f23f4bf1cab18d9e6e88.tar.gz
Make this work on alpha:
Shouldn't the header that defines FD_ZERO() etc. pull in the header that defined memset()?
-rw-r--r--net/bounce/files/patch-sum3
-rw-r--r--net/bounce/patches/patch-aa14
2 files changed, 17 insertions, 0 deletions
diff --git a/net/bounce/files/patch-sum b/net/bounce/files/patch-sum
new file mode 100644
index 00000000000..c83814ee7f0
--- /dev/null
+++ b/net/bounce/files/patch-sum
@@ -0,0 +1,3 @@
+$NetBSD: patch-sum,v 1.1 2000/10/03 01:35:42 hubertf Exp $
+
+MD5 (patch-aa) = 12bebed244f3ab58805142be8e1ff6c7
diff --git a/net/bounce/patches/patch-aa b/net/bounce/patches/patch-aa
new file mode 100644
index 00000000000..b14ecb37d1b
--- /dev/null
+++ b/net/bounce/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1 2000/10/03 01:35:43 hubertf Exp $
+
+--- bounce.c.orig Mon Oct 2 21:31:42 2000
++++ bounce.c
+@@ -11,6 +11,9 @@
+ #ifdef _AIX
+ #include <sys/select.h>
+ #endif
++#ifdef __NetBSD__
++#include <string.h> /* memset() for FD_*() macros */
++#endif
+
+ #include <fcntl.h>
+ #include <errno.h>