diff options
author | agc <agc@pkgsrc.org> | 2002-06-11 12:35:13 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2002-06-11 12:35:13 +0000 |
commit | 259539968277bd2ddc2d1d9365ff2402380edac6 (patch) | |
tree | 147af86c2eba77bff6926c82502b399ac7d24623 /www/curl/patches | |
parent | f34bd0c8b0a3701b8fc2f0bbcea5b2a858fb2564 (diff) | |
download | pkgsrc-259539968277bd2ddc2d1d9365ff2402380edac6.tar.gz |
Make this package compile on -current:
include <sys/types.h> before <sys/select.h>
Diffstat (limited to 'www/curl/patches')
-rw-r--r-- | www/curl/patches/patch-aa | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/curl/patches/patch-aa b/www/curl/patches/patch-aa new file mode 100644 index 00000000000..c49ccc5dd46 --- /dev/null +++ b/www/curl/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.5 2002/06/11 12:35:14 agc Exp $ + +--- src/writeout.c 2002/06/11 12:31:17 1.1 ++++ src/writeout.c 2002/06/11 12:31:35 +@@ -27,6 +27,7 @@ + #include <string.h> + + #ifdef HAVE_SYS_SELECT_H ++#include <sys/types.h> + #include <sys/select.h> + #endif + |