diff options
author | adam <adam@pkgsrc.org> | 2004-06-02 12:07:48 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-06-02 12:07:48 +0000 |
commit | 4e4a139d0f46b5454baa538c283a470455db57c9 (patch) | |
tree | e838fb54398994386de2c98f28143e4b67034544 /www/curl | |
parent | 4bd769db319c475b4c422019153834e36b7a3933 (diff) | |
download | pkgsrc-4e4a139d0f46b5454baa538c283a470455db57c9.tar.gz |
Changes 7.12.0:
o added ability to "upload" to file:// URLs
o added curl_global_init_mem()
o removed curl_formparse()
o the MSVC project file in the release archive is automatically built
o curl --proxy-digest is a new command line option
o the Windows version of libcurl can use wldap32.dll for LDAP
o added curl_easy_strerror(), curl_multi_strerror() and curl_share_strerror()
o IPv6-enabled Windows hosts now resolves names threaded/asynch as well
o configure --with-libidn can be used to point out the root dir of a libidn
installation (version 0.4.5 or later) for curl to use, then libcurl can
resolve and use IDNA names (domain names with "international" letters)
Bugfixes:
o incoming cookies with domains set with a prefixed dot now works better
o CURLOPT_COOKIEFILE and CURLOPT_COOKIE can be used in the same request
o improved peer certificate name verification
o allocation failures cause no leaks nor crashes
o the progress meter display now handles file sizes up to full 8 exabytes
(which is as high a signed 64 bit number can reach)
o general HTTP authentication improvements
o HTTP Digest authentication with the proxy works
o mulipart formposting with -F and file names with spaces work again
o curl_easy_duphandle() now works when ares-enabled
o HTTP Digest authentication works a lot more like the RFC says
o curl works with telnet and stdin properly on Windows
o configure --without-ssl works even when pkg-config has OpenSSL details
o src/hugehelp.c builds correct again in non-configure build environments
Diffstat (limited to 'www/curl')
-rw-r--r-- | www/curl/Makefile | 5 | ||||
-rw-r--r-- | www/curl/PLIST | 15 | ||||
-rw-r--r-- | www/curl/distinfo | 6 |
3 files changed, 16 insertions, 10 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index 8c790ffa0cc..ed58581fc0f 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.40 2004/05/07 13:12:14 adam Exp $ +# $NetBSD: Makefile,v 1.41 2004/06/02 12:07:48 adam Exp $ -DISTNAME= curl-7.11.2 +DISTNAME= curl-7.12.0 CATEGORIES= www MASTER_SITES= http://curl.haxx.se/download/ \ ftp://ftp.sunet.se/pub/www/utilities/curl/ \ ftp://ftp.rge.com/pub/networking/curl/ +EXTRACT_SUFX= .tar.bz2 MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://curl.haxx.se/ diff --git a/www/curl/PLIST b/www/curl/PLIST index 733a5971be4..68483a66fd2 100644 --- a/www/curl/PLIST +++ b/www/curl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2004/05/07 13:12:14 adam Exp $ +@comment $NetBSD: PLIST,v 1.10 2004/06/02 12:07:48 adam Exp $ bin/curl bin/curl-config include/curl/curl.h @@ -11,8 +11,8 @@ include/curl/types.h lib/libcurl.a lib/libcurl.la lib/libcurl.so -lib/libcurl.so.2 -lib/libcurl.so.2.2 +lib/libcurl.so.3 +lib/libcurl.so.3.0 man/man1/curl-config.1 man/man1/curl.1 man/man3/curl_easy_cleanup.3 @@ -21,15 +21,16 @@ man/man3/curl_easy_getinfo.3 man/man3/curl_easy_init.3 man/man3/curl_easy_perform.3 man/man3/curl_easy_setopt.3 +man/man3/curl_easy_strerror.3 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 man/man3/curl_global_init.3 +man/man3/curl_global_init_mem.3 man/man3/curl_mprintf.3 man/man3/curl_multi_add_handle.3 man/man3/curl_multi_cleanup.3 @@ -38,13 +39,14 @@ man/man3/curl_multi_info_read.3 man/man3/curl_multi_init.3 man/man3/curl_multi_perform.3 man/man3/curl_multi_remove_handle.3 +man/man3/curl_multi_strerror.3 man/man3/curl_share_cleanup.3 man/man3/curl_share_init.3 man/man3/curl_share_setopt.3 +man/man3/curl_share_strerror.3 man/man3/curl_slist_append.3 man/man3/curl_slist_free_all.3 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 @@ -61,6 +63,7 @@ share/doc/curl/libcurl-the-guide share/examples/curl/README share/examples/curl/curlgtk.c share/examples/curl/curlx.c +share/examples/curl/fileupload.c share/examples/curl/fopen.c share/examples/curl/ftpget.c share/examples/curl/ftpgetresp.c @@ -68,7 +71,9 @@ share/examples/curl/ftpupload.c share/examples/curl/getinmemory.c share/examples/curl/http-post.c share/examples/curl/httpput.c +share/examples/curl/https.c share/examples/curl/multi-app.c +share/examples/curl/multi-debugcallback.c share/examples/curl/multi-double.c share/examples/curl/multi-post.c share/examples/curl/multi-single.c diff --git a/www/curl/distinfo b/www/curl/distinfo index 90745039d77..d3ac6c8e7bf 100644 --- a/www/curl/distinfo +++ b/www/curl/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.25 2004/05/07 13:12:14 adam Exp $ +$NetBSD: distinfo,v 1.26 2004/06/02 12:07:48 adam Exp $ -SHA1 (curl-7.11.2.tar.gz) = 1efcba83e59dd4c469a0003307bf8af2848417e1 -Size (curl-7.11.2.tar.gz) = 1435629 bytes +SHA1 (curl-7.12.0.tar.bz2) = 1d8f21acf1d25f08338105d420429e5c83a72ee9 +Size (curl-7.12.0.tar.bz2) = 1193098 bytes |