diff options
author | seb <seb> | 2002-01-14 00:19:58 +0000 |
---|---|---|
committer | seb <seb> | 2002-01-14 00:19:58 +0000 |
commit | 08c2e3f7f095494cc37d077f0e9d9b003a9ee1d1 (patch) | |
tree | 6cef09ba0a025dccd705978a42993c6fda73653e /www/curl | |
parent | 1f5b7d119351fb531a0cf5a35db7150da941d41a (diff) | |
download | pkgsrc-08c2e3f7f095494cc37d077f0e9d9b003a9ee1d1.tar.gz |
Update to version 7.9.2. PR 15102 by Shell Hung <shell@shellhung.org>
Trivial patch on configure which fixes compilation on NetBSD/!i386 added.
Fixed in 7.9.2
- compiles and builds on the good old Mac OS (in addition to Mac OS X)
- bugfixed persistant connections over proxy with multiple protocols
- --disable-epsv is a new option to the curl command line tool
- bugfixed verbose ftp output on Tru64 unix
- added CURLOPT_FTP_USE_EPSV
- passive ftp download works with IPv6
- always return proper error code on failed connects
- bugfixed FTP response reader
- bugfixed verbose telnet
- added CURLINFO_STARTTRANSFER_TIME
- bugfixed conditional HTTP fetches based on time
- multiple calls to curl_global_init() is now treated better
- bugfixed multiple ftp requests
- made -p/--proxytunnel work for plain HTTP as well
- "current speed" progress meter bugfix
- improved the name resolver configure check
- libcurl now restores signal handlers and timeouts properly
- improved SSL over HTTP-proxy when using weird proxies(!)
- added the -1/--TLSv1 option
- bugfixed LDAP transfers
Diffstat (limited to 'www/curl')
-rw-r--r-- | www/curl/Makefile | 4 | ||||
-rw-r--r-- | www/curl/distinfo | 7 | ||||
-rw-r--r-- | www/curl/patches/patch-aa | 13 |
3 files changed, 19 insertions, 5 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index 5bae64a7478..78c95763d1e 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2001/12/23 19:33:18 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2002/01/14 00:19:58 seb Exp $ -DISTNAME= curl-7.9.1 +DISTNAME= curl-7.9.2 CATEGORIES= www MASTER_SITES= http://curl.haxx.se/download/ diff --git a/www/curl/distinfo b/www/curl/distinfo index cf5f7fe31e8..38f417d6482 100644 --- a/www/curl/distinfo +++ b/www/curl/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.6 2001/11/12 12:27:30 seb Exp $ +$NetBSD: distinfo,v 1.7 2002/01/14 00:19:58 seb Exp $ -SHA1 (curl-7.9.1.tar.gz) = 2438b67f7168a2ad94f3bc04dd6f69d274e5d1ec -Size (curl-7.9.1.tar.gz) = 639990 bytes +SHA1 (curl-7.9.2.tar.gz) = 42fee03de3e118f64cd6e3015eb87408283c0843 +Size (curl-7.9.2.tar.gz) = 663387 bytes +SHA1 (patch-aa) = b684db6710cbbc490d119b2d29c3b7b46f0e8bf1 diff --git a/www/curl/patches/patch-aa b/www/curl/patches/patch-aa new file mode 100644 index 00000000000..e580c30fed9 --- /dev/null +++ b/www/curl/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2002/01/14 00:19:58 seb Exp $ + +--- configure.orig Thu Nov 29 09:53:06 2001 ++++ configure +@@ -12402,7 +12402,7 @@ + #line 12402 "configure" + #include "confdefs.h" + #include <sys/types.h> +-#include <sys/socket.h>, ++#include <sys/socket.h> + #include <arpa/inet.h> + + int |