diff options
author | cube <cube@pkgsrc.org> | 2005-01-07 09:37:21 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2005-01-07 09:37:21 +0000 |
commit | 21752a9e5a4ec19ba4e68229c380397780f13f57 (patch) | |
tree | 93e81818c1c98e5403ae743077ba493ddd9de0c9 /www | |
parent | 5d9ca0d30f34a0a462112278d447b29fa41a8a9b (diff) | |
download | pkgsrc-21752a9e5a4ec19ba4e68229c380397780f13f57.tar.gz |
Add a patch that re-orders inclusion of select.h to avoid compilation
errors on NetBSD 1.6.
PKGREVISION++.
PR#28859 by Gilles Gravier.
Diffstat (limited to 'www')
-rw-r--r-- | www/curl/Makefile | 3 | ||||
-rw-r--r-- | www/curl/distinfo | 3 | ||||
-rw-r--r-- | www/curl/patches/patch-ac | 19 |
3 files changed, 23 insertions, 2 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index 03b02a635de..e81a4c08216 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.46 2005/01/03 11:00:51 wiz Exp $ +# $NetBSD: Makefile,v 1.47 2005/01/07 09:37:21 cube Exp $ DISTNAME= curl-7.12.3 +PKGREVISION= 1 CATEGORIES= www MASTER_SITES= http://curl.haxx.se/download/ \ ftp://ftp.sunet.se/pub/www/utilities/curl/ \ diff --git a/www/curl/distinfo b/www/curl/distinfo index ee947b05394..4efe66d805d 100644 --- a/www/curl/distinfo +++ b/www/curl/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.29 2005/01/03 11:00:51 wiz Exp $ +$NetBSD: distinfo,v 1.30 2005/01/07 09:37:21 cube Exp $ SHA1 (curl-7.12.3.tar.bz2) = 8e81488b18baabdb61aeb46095fee6f1d7325cdf Size (curl-7.12.3.tar.bz2) = 1830712 bytes +SHA1 (patch-ac) = b5e87774c84ca29c35c48d1f8fa58991c8596d7a diff --git a/www/curl/patches/patch-ac b/www/curl/patches/patch-ac new file mode 100644 index 00000000000..6305b1b2315 --- /dev/null +++ b/www/curl/patches/patch-ac @@ -0,0 +1,19 @@ +$NetBSD: patch-ac,v 1.1 2005/01/07 09:37:21 cube Exp $ + +--- lib/select.c.orig Sun Nov 28 22:55:42 2004 ++++ lib/select.c +@@ -23,11 +23,11 @@ + + #include "setup.h" + +-#ifdef HAVE_SYS_SELECT_H +-#include <sys/select.h> +-#endif + #ifdef HAVE_SYS_TYPES_H + #include <sys/types.h> ++#endif ++#ifdef HAVE_SYS_SELECT_H ++#include <sys/select.h> + #endif + + #ifdef HAVE_SYS_TIME_H |