pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/curl Add a patch that re-orders inclusion of selec...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5a472ff65269
branches:  trunk
changeset: 487021:5a472ff65269
user:      cube <cube%pkgsrc.org@localhost>
date:      Fri Jan 07 09:37:21 2005 +0000

description:
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:

 www/curl/Makefile         |   3 ++-
 www/curl/distinfo         |   3 ++-
 www/curl/patches/patch-ac |  19 +++++++++++++++++++
 3 files changed, 23 insertions(+), 2 deletions(-)

diffs (45 lines):

diff -r 35625a726ec0 -r 5a472ff65269 www/curl/Makefile
--- a/www/curl/Makefile Fri Jan 07 09:02:51 2005 +0000
+++ b/www/curl/Makefile Fri Jan 07 09:37:21 2005 +0000
@@ -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 -r 35625a726ec0 -r 5a472ff65269 www/curl/distinfo
--- a/www/curl/distinfo Fri Jan 07 09:02:51 2005 +0000
+++ b/www/curl/distinfo Fri Jan 07 09:37:21 2005 +0000
@@ -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 -r 35625a726ec0 -r 5a472ff65269 www/curl/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/curl/patches/patch-ac Fri Jan 07 09:37:21 2005 +0000
@@ -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



Home | Main Index | Thread Index | Old Index