diff options
author | shell <shell> | 2002-10-20 02:19:42 +0000 |
---|---|---|
committer | shell <shell> | 2002-10-20 02:19:42 +0000 |
commit | 67aaca3416b0a87d44e97faca32e8d617218b6ba (patch) | |
tree | 0ee2d767c873c0422d0c0afdc09ebc6379f43f17 /www/curl | |
parent | 0b4a1733e52ea39a011aabae9f0466277c269a16 (diff) | |
download | pkgsrc-67aaca3416b0a87d44e97faca32e8d617218b6ba.tar.gz |
Updated to curl-7.10.1
Changes :
- Jeff Lawson fixed a few problems with connection re-use that remained when
you set CURLOPT_PROXY to "".
- Craig Davison found a terrible flaw and Cris Bailiff helped out in the
search. Getting HTTP data from servers when the headers are split up in
multiple reads, could cause junk data to get inserted among the saved
headers. This only concerns HTTP(S) headers.
- Vincent Penquerc'h gave us the good suggestion that when the ERRRORBUFFER
is set internally, the error text is sent to the debug function as well.
- Fixed the telnet code to timeout properly as the option tells it to. On
non-windows platforms.
- John Crow pointed out that libcurl-the-guide wasn't included in the release
tarball!
- Kevin Roth pointed out that make install didn't do right if build outside
the source tree (ca-bundle wise).
- FOLLOW_LOCATION bugfix for the multi interface
[trim], more see CHANGES.
Diffstat (limited to 'www/curl')
-rw-r--r-- | www/curl/Makefile | 6 | ||||
-rw-r--r-- | www/curl/PLIST | 7 | ||||
-rw-r--r-- | www/curl/distinfo | 7 | ||||
-rw-r--r-- | www/curl/patches/patch-aa | 12 |
4 files changed, 12 insertions, 20 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index f30303e08e1..e56c7c6c692 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.20 2002/08/25 21:52:03 jlam Exp $ +# $NetBSD: Makefile,v 1.21 2002/10/20 02:19:42 shell Exp $ -DISTNAME= curl-7.9.7 +DISTNAME= curl-7.10.1 CATEGORIES= www MASTER_SITES= http://curl.haxx.se/download/ \ ftp://ftp.sunet.se/pub/www/utilities/curl/ \ @@ -31,6 +31,6 @@ post-install: done ${SED} '/php/d' ${WRKSRC}/docs/examples/README > \ ${PREFIX}/share/examples/curl/README - + .include "../../security/openssl/buildlink2.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/curl/PLIST b/www/curl/PLIST index 3e74f5890ee..2be599c5f0c 100644 --- a/www/curl/PLIST +++ b/www/curl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2002/08/25 21:52:04 jlam Exp $ +@comment $NetBSD: PLIST,v 1.6 2002/10/20 02:19:42 shell Exp $ bin/curl bin/curl-config include/curl/curl.h @@ -24,6 +24,7 @@ man/man3/curl_escape.3 man/man3/curl_formadd.3 man/man3/curl_formfree.3 man/man3/curl_formparse.3 +man/man3/curl_free.3 man/man3/curl_getdate.3 man/man3/curl_getenv.3 man/man3/curl_global_cleanup.3 @@ -42,9 +43,11 @@ man/man3/curl_strequal.3 man/man3/curl_strnequal.3 man/man3/curl_unescape.3 man/man3/curl_version.3 +man/man3/curl_version_info.3 man/man3/libcurl-errors.3 man/man3/libcurl-multi.3 man/man3/libcurl.3 +share/curl/curl-ca-bundle.crt share/doc/curl/FAQ share/doc/curl/MANUAL share/doc/curl/TheArtOfHttpScripting @@ -67,7 +70,9 @@ share/examples/curl/post-callback.c share/examples/curl/postit2.c share/examples/curl/sepheaders.c share/examples/curl/simple.c +share/examples/curl/simplepost.c share/examples/curl/simplessl.c @dirrm share/examples/curl @dirrm share/doc/curl +@dirrm share/curl @dirrm include/curl diff --git a/www/curl/distinfo b/www/curl/distinfo index ad74ff8fc63..17fc23203c2 100644 --- a/www/curl/distinfo +++ b/www/curl/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.15 2002/08/25 21:52:04 jlam Exp $ +$NetBSD: distinfo,v 1.16 2002/10/20 02:19:42 shell Exp $ -SHA1 (curl-7.9.7.tar.gz) = 6fcb23be788984bcfca7debe5f307ec65fb56101 -Size (curl-7.9.7.tar.gz) = 717489 bytes -SHA1 (patch-aa) = 5990fe1f4d583847751549f2e647f23b2bbbbe96 +SHA1 (curl-7.10.1.tar.gz) = c174a1c7ffd23b1ce84e653e1ceb2293e6bfe4c6 +Size (curl-7.10.1.tar.gz) = 859157 bytes SHA1 (patch-ab) = 7054f8d9f19fa2a9d7b816fd58ae08ef97bcbb1c diff --git a/www/curl/patches/patch-aa b/www/curl/patches/patch-aa deleted file mode 100644 index 70f422a7538..00000000000 --- a/www/curl/patches/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-aa,v 1.6 2002/08/25 21:52:05 jlam Exp $ - ---- src/writeout.c 2002/06/11 12:31:17 1.1 -+++ src/writeout.c 2002/06/11 12:31:35 -@@ -27,6 +27,7 @@ - #include <string.h> - - #ifdef HAVE_SYS_SELECT_H -+#include <sys/types.h> - #include <sys/select.h> - #endif - |