diff options
author | recht <recht@pkgsrc.org> | 2004-01-23 22:52:28 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2004-01-23 22:52:28 +0000 |
commit | 1f7397d3bb5785e7636c9ab1a27ef76c31ac48c0 (patch) | |
tree | 0b9915fa1c25477f1d38e287d1df48e244d45e98 /www/curl | |
parent | bd676bf9379132098555b6505d0bb08f472b3806 (diff) | |
download | pkgsrc-1f7397d3bb5785e7636c9ab1a27ef76c31ac48c0.tar.gz |
update to curl-7.11.0
Fixed in 7.11.0
Changes:
- allows the URL to be set by a callback when using the multi interface
- large file support was added. Use one of the new options:
INFILESIZE_LARGE, RESUME_FROM_LARGE and MAXFILESIZE_LARGE
- the new --ftp-pasv overrides a previous --ftpport
- CURLOPT_FTPSSL and ftps:// now do ssl over FTP "The Right Way"
(the curl tool now features the --ftp-ssl option)
- The Windows DLLs are built with an added "resource file"
- New LIBCURL_VERSION_* defines for easier checking version number
- Included Mac OS X 'framework' makefile in the release archive
- Removed the TRUE and FALSE #defines from the public curl header file
- Added CURLOPT_NETRC_FILE
For a complete list see the Changelog at http://curl.haxx.se/changes.html
Diffstat (limited to 'www/curl')
-rw-r--r-- | www/curl/Makefile | 4 | ||||
-rw-r--r-- | www/curl/distinfo | 8 | ||||
-rw-r--r-- | www/curl/patches/patch-ab | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index 1221a581e80..91bc7969f4a 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.33 2003/12/07 13:28:33 wiz Exp $ +# $NetBSD: Makefile,v 1.34 2004/01/23 22:52:28 recht Exp $ -DISTNAME= curl-7.10.8 +DISTNAME= curl-7.11.0 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 c90b4122217..a6b44ad968f 100644 --- a/www/curl/distinfo +++ b/www/curl/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.22 2003/12/07 13:28:33 wiz Exp $ +$NetBSD: distinfo,v 1.23 2004/01/23 22:52:29 recht Exp $ -SHA1 (curl-7.10.8.tar.gz) = 88ac9f9e0052ec212cc948a125c3f1ee2af6a0a2 -Size (curl-7.10.8.tar.gz) = 1267406 bytes -SHA1 (patch-ab) = 58c44794bc6ba583484f85584e45e72a52ebd25e +SHA1 (curl-7.11.0.tar.gz) = e14fe506347a0f415e348aae1320943f2f618e17 +Size (curl-7.11.0.tar.gz) = 1355754 bytes +SHA1 (patch-ab) = eee97325b6ea00d810ecbf74db045985408a3db9 diff --git a/www/curl/patches/patch-ab b/www/curl/patches/patch-ab index 69576f27ad7..0c3257d801a 100644 --- a/www/curl/patches/patch-ab +++ b/www/curl/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.7 2003/12/07 13:28:33 wiz Exp $ +$NetBSD: patch-ab,v 1.8 2004/01/23 22:52:29 recht Exp $ ---- lib/ftp.c.orig Fri Oct 31 22:36:43 2003 -+++ lib/ftp.c -@@ -2097,11 +2097,12 @@ CURLcode ftp_perform(struct connectdata +--- lib/ftp.c.orig 2004-01-21 17:50:05.000000000 +0100 ++++ lib/ftp.c 2004-01-23 23:46:58.000000000 +0100 +@@ -2210,11 +2210,12 @@ #ifdef HAVE_STRFTIME if(data->set.get_filetime && (data->info.filetime>=0) ) { struct tm *tm; |