summaryrefslogtreecommitdiff
path: root/net/bounce/patches
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 /net/bounce/patches
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()?
Diffstat (limited to 'net/bounce/patches')
-rw-r--r--net/bounce/patches/patch-aa14
1 files changed, 14 insertions, 0 deletions
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>