diff options
author | recht <recht> | 2004-08-21 11:31:00 +0000 |
---|---|---|
committer | recht <recht> | 2004-08-21 11:31:00 +0000 |
commit | 20ba2e886e33270b5c4448911506004e6c85cef4 (patch) | |
tree | 8b302e84c972e63b2eaf172f6e849fe5fa1d1df8 /www/curl/Makefile | |
parent | 193f970933e4562bbf52f914b8d77e3e4b504cf9 (diff) | |
download | pkgsrc-20ba2e886e33270b5c4448911506004e6c85cef4.tar.gz |
update to Curl 7.12.1
Changes:
* the version string now only contains info about (sub) package versions,
while for example krb4 and ipv6 now only are available as 'features'
* added curl_easy_reset()
* socks proxy support even when libcurl is built ipv6-enabled
* read callbacks can stop the transfer by returning CURL_READFUNC_ABORT
* libcurl-tutorial.3 is the new man page formerly known as
libcurl-the-guide
* additional SSL trace data might be sent to the debug callback using two
new types: CURLINFO_SSL_DATA_IN and CURLINFO_SSL_DATA_OUT
* multipart formposts can upload files larger than system memory
* the curl tool continues with the next URL even if one transfer fails
* FTP 3rd party transfer support - seven new setopt() options
Bugfixes:
* UTF-8 encoded certificate names can now be verified properly
* krb4 link problem
* HTTP Negotiate service name now provided in uppercase
* no longer accepts any cookies with domain set to just a TLD
* HTTP Digest properties without quotes in the header
* bad Host: header case on re-used connections over proxy
* duplicate Host: header case on re-used connections
* curl -o name#[num] now works when no globbing for [num] exists
* test suite runs fine with valgrind 2.1.x
* negative Content-Length is ignored
* test 505 runs fine on windows
* curl_share_cleanup() crash
* --trace files now get the final info lines too
* multi interface connects fine to multi-IP resolving hosts
* --limit-rate works on Mac OS X (and other systems with bad poll()s)
* cookies can now hold 4999 bytes of content
* HTTP POST/PUT with NTLM/Digest/Negotiate to a URL returning 3XX
* HTTPS POST/PUT over a proxy requiring NTLM/Digest/Negotiate
* less restrictive libidn requirements, 0.4.1 or later is fine
* HTTP POST or PUT with Digest/Negotiate/NTLM selected but the server
didn't require any authentication
* win32 file:// transfer free memory bug
* configure --disable-http builds a libcurl without HTTP support
* CURLOPT_FILETIME had wrong type in curl.h, it expects a long argument
* builds fine with Borland on Windows
* the msvc curllib.dsp now builds the libcurl.lib file
* builds fine on VMS
* builds fine on NetWare
* HTTP Digest authentication with proxies uses correct user name + password
* builds fine with lcc-win32
Diffstat (limited to 'www/curl/Makefile')
-rw-r--r-- | www/curl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile index c448dec2474..0bb9cc6a9c9 100644 --- a/www/curl/Makefile +++ b/www/curl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2004/07/28 01:02:08 minskim Exp $ +# $NetBSD: Makefile,v 1.43 2004/08/21 11:31:00 recht Exp $ -DISTNAME= curl-7.12.0 +DISTNAME= curl-7.12.1 CATEGORIES= www MASTER_SITES= http://curl.haxx.se/download/ \ ftp://ftp.sunet.se/pub/www/utilities/curl/ \ @@ -34,7 +34,7 @@ CONFIGURE_ARGS+= --disable-ipv6 post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/curl for _f in MANUAL TheArtOfHttpScripting FAQ \ - libcurl-the-guide; do \ + curl-config.pdf curl.pdf; do \ ${INSTALL_DATA} ${WRKSRC}/docs/$${_f} \ ${PREFIX}/share/doc/curl/${_f}; \ done |