summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2003-12-07 13:28:33 +0000
committerwiz <wiz@pkgsrc.org>2003-12-07 13:28:33 +0000
commitc8d22702b1e6173739dc711500bb1cbbf4c33a51 (patch)
treed572b8e5d6ca69548b96801954c945eac696cb1e
parentdfac8125aecb64fc84dcb750f377022fd0b8b30c (diff)
downloadpkgsrc-c8d22702b1e6173739dc711500bb1cbbf4c33a51.tar.gz
Update to 7.10.8:
7.10.8 SPNEGO support, Negotiate support, multiple -T flags work, IPv6 support on Windows, and more were added. More than 40 bugs were fixed. 7.10.7 This release supports NTLM for proxies, --ftp-create-dirs, and optional support for asynchronous name-resolving calls. It fixes an information leak, minor memory leaks, a 64bit problem, two cookie-related problems, URL globbing output using -o #[num], and more.
-rw-r--r--www/curl/Makefile5
-rw-r--r--www/curl/PLIST8
-rw-r--r--www/curl/distinfo8
-rw-r--r--www/curl/patches/patch-ab21
4 files changed, 23 insertions, 19 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile
index acc77c83e0a..1221a581e80 100644
--- a/www/curl/Makefile
+++ b/www/curl/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.32 2003/11/24 20:44:07 erh Exp $
+# $NetBSD: Makefile,v 1.33 2003/12/07 13:28:33 wiz Exp $
-DISTNAME= curl-7.10.6
-PKGREVISION= 1
+DISTNAME= curl-7.10.8
CATEGORIES= www
MASTER_SITES= http://curl.haxx.se/download/ \
ftp://ftp.sunet.se/pub/www/utilities/curl/ \
diff --git a/www/curl/PLIST b/www/curl/PLIST
index b702b3fa5ee..157c94fe93e 100644
--- a/www/curl/PLIST
+++ b/www/curl/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2002/10/20 20:10:06 seb Exp $
+@comment $NetBSD: PLIST,v 1.8 2003/12/07 13:28:33 wiz Exp $
bin/curl
bin/curl-config
include/curl/curl.h
@@ -37,6 +37,9 @@ 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_share_cleanup.3
+man/man3/curl_share_init.3
+man/man3/curl_share_setopt.3
man/man3/curl_slist_append.3
man/man3/curl_slist_free_all.3
man/man3/curl_strequal.3
@@ -44,8 +47,10 @@ man/man3/curl_strnequal.3
man/man3/curl_unescape.3
man/man3/curl_version.3
man/man3/curl_version_info.3
+man/man3/libcurl-easy.3
man/man3/libcurl-errors.3
man/man3/libcurl-multi.3
+man/man3/libcurl-share.3
man/man3/libcurl.3
share/curl/curl-ca-bundle.crt
share/doc/curl/FAQ
@@ -54,6 +59,7 @@ share/doc/curl/TheArtOfHttpScripting
share/doc/curl/libcurl-the-guide
share/examples/curl/README
share/examples/curl/curlgtk.c
+share/examples/curl/curlx.c
share/examples/curl/fopen.c
share/examples/curl/ftpget.c
share/examples/curl/ftpgetresp.c
diff --git a/www/curl/distinfo b/www/curl/distinfo
index e2698539010..c90b4122217 100644
--- a/www/curl/distinfo
+++ b/www/curl/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.21 2003/07/30 10:29:02 wiz Exp $
+$NetBSD: distinfo,v 1.22 2003/12/07 13:28:33 wiz Exp $
-SHA1 (curl-7.10.6.tar.gz) = e573983c63a589b49ff74c521cceb3db69f47d23
-Size (curl-7.10.6.tar.gz) = 1222927 bytes
-SHA1 (patch-ab) = 47a06a4b376cb7417136877a69ecef1300e53a2f
+SHA1 (curl-7.10.8.tar.gz) = 88ac9f9e0052ec212cc948a125c3f1ee2af6a0a2
+Size (curl-7.10.8.tar.gz) = 1267406 bytes
+SHA1 (patch-ab) = 58c44794bc6ba583484f85584e45e72a52ebd25e
diff --git a/www/curl/patches/patch-ab b/www/curl/patches/patch-ab
index b11b5825bab..69576f27ad7 100644
--- a/www/curl/patches/patch-ab
+++ b/www/curl/patches/patch-ab
@@ -1,20 +1,19 @@
-$NetBSD: patch-ab,v 1.6 2003/07/30 10:29:03 wiz Exp $
+$NetBSD: patch-ab,v 1.7 2003/12/07 13:28:33 wiz Exp $
---- lib/ftp.c.orig Mon Jul 28 10:50:02 2003
+--- lib/ftp.c.orig Fri Oct 31 22:36:43 2003
+++ lib/ftp.c
-@@ -2056,12 +2056,13 @@ CURLcode ftp_perform(struct connectdata
-
+@@ -2097,11 +2097,12 @@ CURLcode ftp_perform(struct connectdata
#ifdef HAVE_STRFTIME
if(data->set.get_filetime && (data->info.filetime>=0) ) {
-+ time_t filetime = data->info.filetime;
struct tm *tm;
- #ifdef HAVE_LOCALTIME_R
++ time_t filetime = data->info.filetime;
+ #ifdef HAVE_GMTIME_R
struct tm buffer;
-- tm = (struct tm *)localtime_r(&data->info.filetime, &buffer);
-+ tm = (struct tm *)localtime_r(&filetime, &buffer);
+- tm = (struct tm *)gmtime_r((time_t *)&data->info.filetime, &buffer);
++ tm = (struct tm *)gmtime_r(&filetime, &buffer);
#else
-- tm = localtime(&data->info.filetime);
-+ tm = localtime(&filetime);
+- tm = gmtime((time_t *)&data->info.filetime);
++ tm = gmtime(&filetime);
#endif
- /* format: "Tue, 15 Nov 1994 12:45:26 GMT" */
+ /* format: "Tue, 15 Nov 1994 12:45:26" */
strftime(buf, BUFSIZE-1, "Last-Modified: %a, %d %b %Y %H:%M:%S GMT\r\n",