diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-10-03 01:35:42 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-10-03 01:35:42 +0000 |
commit | 1eb7d259ca7850cbcb1c9946a800872e536e90a6 (patch) | |
tree | a54a2ca545e86cce7f8cb8a091581b0bf01a8e3e /net/bounce/patches | |
parent | 49e04e9eb79e5a7fb254d30c34fb3970f723796f (diff) | |
download | pkgsrc-1eb7d259ca7850cbcb1c9946a800872e536e90a6.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-aa | 14 |
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> |