summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorcube <cube>2005-01-07 09:37:21 +0000
committercube <cube>2005-01-07 09:37:21 +0000
commit0d3fd86cebeeacccc7e486c0a62c8dcb1d3924b4 (patch)
tree93e81818c1c98e5403ae743077ba493ddd9de0c9 /www
parent7b42315c1b1380795963f9262fa713f322543b2f (diff)
downloadpkgsrc-0d3fd86cebeeacccc7e486c0a62c8dcb1d3924b4.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/Makefile3
-rw-r--r--www/curl/distinfo3
-rw-r--r--www/curl/patches/patch-ac19
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