diff options
author | minskim <minskim@pkgsrc.org> | 2005-10-20 16:25:15 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-10-20 16:25:15 +0000 |
commit | dba8939f372e32c58804e624d9cb2148681a4742 (patch) | |
tree | d70252d7e96968b3566022e33ae67b42507c1a60 /www | |
parent | c28760869c8a52369f16f41ded3ad9b952e074dc (diff) | |
download | pkgsrc-dba8939f372e32c58804e624d9cb2148681a4742.tar.gz |
Make "curl-config --vernum" work again. It was broken in 7.15.0.
Bump PKGREVISION.
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-ab | 14 |
3 files changed, 18 insertions, 2 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index 8ac0eadcaab..f88f0c7f4c1 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.57 2005/10/15 15:37:16 reed Exp $ +# $NetBSD: Makefile,v 1.58 2005/10/20 16:25:15 minskim Exp $ DISTNAME= curl-7.15.0 +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 92cd50b22e5..6a0896b9893 100644 --- a/www/curl/distinfo +++ b/www/curl/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.39 2005/10/15 15:37:16 reed Exp $ +$NetBSD: distinfo,v 1.40 2005/10/20 16:25:15 minskim Exp $ SHA1 (curl-7.15.0.tar.bz2) = 5c4d5b57e180d419a311f5fbbc104aac4d3f3a83 RMD160 (curl-7.15.0.tar.bz2) = 181cc8bbe7422fbf3c249902baae1d9c65633683 Size (curl-7.15.0.tar.bz2) = 1426714 bytes SHA1 (patch-aa) = 83b1b2ec0d9531ef85c42d5ba1b5319415168d3e +SHA1 (patch-ab) = bc4a3b9d02dd07ec89af8745a44ee9957ad502cc diff --git a/www/curl/patches/patch-ab b/www/curl/patches/patch-ab new file mode 100644 index 00000000000..25178c23bd8 --- /dev/null +++ b/www/curl/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.10 2005/10/20 16:25:15 minskim Exp $ + +--- include/curl/curlver.h.orig 2005-10-13 01:20:05.000000000 -0700 ++++ include/curl/curlver.h +@@ -51,8 +51,6 @@ + and it is always a greater number in a more recent release. It makes + comparisons with greater than and less than work. + */ +-#define LIBCURL_VERSION_NUM ((LIBCURL_VERSION_MAJOR << 16) | \ +- (LIBCURL_VERSION_MINOR << 8) | \ +- LIBCURL_VERSION_PATCH) ++#define LIBCURL_VERSION_NUM 0x070f00 + + #endif /* __CURL_CURLVER_H */ |