diff options
Diffstat (limited to 'www/curl/Makefile')
-rw-r--r-- | www/curl/Makefile | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index e22468cb095..5dee1ab3caf 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.78 2008/01/18 05:09:48 tnn Exp $ +# $NetBSD: Makefile,v 1.79 2008/03/02 14:40:26 bjs Exp $ -DISTNAME= curl-7.17.1 -PKGREVISION= 1 +DISTNAME= curl-7.18.0 CATEGORIES= www MASTER_SITES= http://curl.haxx.se/download/ \ ftp://ftp.sunet.se/pub/www/utilities/curl/ @@ -32,20 +31,23 @@ USE_TOOLS+= perl .endif .include "options.mk" - -post-configure: - if ${GREP} '#define HAVE_SYS_SELECT_H 1' ${WRKSRC}/src/config.h \ - >/dev/null; \ - then \ - line='#include <sys/select.h>'; \ - else \ - line='/* sys/select.h not included because it does not exist */'; \ - fi; \ - ${SED} -e "s|__INCLUDE_SYS_SELECT_H__|$${line}|" \ - <${WRKSRC}/include/curl/multi.h \ - >${WRKSRC}/include/curl/multi.h.new; \ - ${MV} ${WRKSRC}/include/curl/multi.h.new \ - ${WRKSRC}/include/curl/multi.h +# +# XXXbjs CHANGES claims this is fixed. I have left it here commented out +# in case this is not so. +# +#post-configure: +# if ${GREP} '#define HAVE_SYS_SELECT_H 1' ${WRKSRC}/src/config.h \ +# >/dev/null; \ +# then \ +# line='#include <sys/select.h>'; \ +# else \ +# line='/* sys/select.h not included because it does not exist */'; \ +# fi; \ +# ${SED} -e "s|__INCLUDE_SYS_SELECT_H__|$${line}|" \ +# <${WRKSRC}/include/curl/multi.h \ +# >${WRKSRC}/include/curl/multi.h.new; \ +# ${MV} ${WRKSRC}/include/curl/multi.h.new \ +# ${WRKSRC}/include/curl/multi.h post-install: ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/curl |