pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/curl Update to 7.10.8:
details: https://anonhg.NetBSD.org/pkgsrc/rev/dc256a7a1789
branches: trunk
changeset: 464357:dc256a7a1789
user: wiz <wiz%pkgsrc.org@localhost>
date: Sun Dec 07 13:28:33 2003 +0000
description:
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.
diffstat:
www/curl/Makefile | 5 ++---
www/curl/PLIST | 8 +++++++-
www/curl/distinfo | 8 ++++----
www/curl/patches/patch-ab | 21 ++++++++++-----------
4 files changed, 23 insertions(+), 19 deletions(-)
diffs (98 lines):
diff -r 115feab3caa2 -r dc256a7a1789 www/curl/Makefile
--- a/www/curl/Makefile Sun Dec 07 13:17:11 2003 +0000
+++ b/www/curl/Makefile Sun Dec 07 13:28:33 2003 +0000
@@ -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 -r 115feab3caa2 -r dc256a7a1789 www/curl/PLIST
--- a/www/curl/PLIST Sun Dec 07 13:17:11 2003 +0000
+++ b/www/curl/PLIST Sun Dec 07 13:28:33 2003 +0000
@@ -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_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_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/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 -r 115feab3caa2 -r dc256a7a1789 www/curl/distinfo
--- a/www/curl/distinfo Sun Dec 07 13:17:11 2003 +0000
+++ b/www/curl/distinfo Sun Dec 07 13:28:33 2003 +0000
@@ -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 -r 115feab3caa2 -r dc256a7a1789 www/curl/patches/patch-ab
--- a/www/curl/patches/patch-ab Sun Dec 07 13:17:11 2003 +0000
+++ b/www/curl/patches/patch-ab Sun Dec 07 13:28:33 2003 +0000
@@ -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) ) {
+ struct tm *tm;
+ time_t filetime = data->info.filetime;
- struct tm *tm;
- #ifdef HAVE_LOCALTIME_R
+ #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",
Home |
Main Index |
Thread Index |
Old Index