summaryrefslogtreecommitdiff
path: root/www/curl
diff options
context:
space:
mode:
authorshell <shell@pkgsrc.org>2003-02-09 08:46:36 +0000
committershell <shell@pkgsrc.org>2003-02-09 08:46:36 +0000
commitf1a04c5c7c8430f5971a24f4400ec37fb639d49c (patch)
tree8d3afdc262215b01bdf5ee74aa99058e184a9e29 /www/curl
parent2f9dbad830d744caec4427f68f005b135bd9ce02 (diff)
downloadpkgsrc-f1a04c5c7c8430f5971a24f4400ec37fb639d49c.tar.gz
Updated to curl-7.10.3
Patches by Adrian Portelli <adrianp@stindustries.net> (PR#20142) Changes : - Steve Oliphant pointed out that test case 105 did not work anymore and this was due to a missing fix for the password prompting. - Bryan Kemp pointed out that curl -u could not provide a blank password without prompting the user. It can now. -u username: makes the password empty, while -u username makes curl prompt the user for a password. - Kjetil Jacobsen found a remaining connect problem in the multi interface on ipv4 systems (Linux only?), that I fixed and Kjetil verified that it fixed his problems. - memanalyze.pl now reads a file name from the command line, and no longer takes the data on stdin as before. - Fixed tests/memanalyze.pl to work with file names that contain colons (as on Windows). - Kjetil Jacobsen quickly pointed out that lib/share.h was missing... * For more, see CHANGES.
Diffstat (limited to 'www/curl')
-rw-r--r--www/curl/Makefile4
-rw-r--r--www/curl/distinfo8
-rw-r--r--www/curl/patches/patch-ab10
3 files changed, 11 insertions, 11 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile
index 50315e5cd5e..57897e2e2c4 100644
--- a/www/curl/Makefile
+++ b/www/curl/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2002/12/07 23:38:56 jmmv Exp $
+# $NetBSD: Makefile,v 1.24 2003/02/09 08:46:36 shell Exp $
-DISTNAME= curl-7.10.2
+DISTNAME= curl-7.10.3
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 57bb91e70a2..9cb8a6e436c 100644
--- a/www/curl/distinfo
+++ b/www/curl/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.17 2002/12/07 23:38:56 jmmv Exp $
+$NetBSD: distinfo,v 1.18 2003/02/09 08:46:36 shell Exp $
-SHA1 (curl-7.10.2.tar.gz) = ff263647b69bedc3d947da3dd6aceca779c52d8a
-Size (curl-7.10.2.tar.gz) = 1010911 bytes
-SHA1 (patch-ab) = 7054f8d9f19fa2a9d7b816fd58ae08ef97bcbb1c
+SHA1 (curl-7.10.3.tar.gz) = e8a759e168f52f89de1edcf9b79b7e7c3a9b27a3
+Size (curl-7.10.3.tar.gz) = 1043799 bytes
+SHA1 (patch-ab) = 753cc61d644b33a96af3025c444701231bacb323
diff --git a/www/curl/patches/patch-ab b/www/curl/patches/patch-ab
index 00ec637fcad..1928dd56735 100644
--- a/www/curl/patches/patch-ab
+++ b/www/curl/patches/patch-ab
@@ -1,11 +1,11 @@
-$NetBSD: patch-ab,v 1.3 2002/08/25 21:52:05 jlam Exp $
+$NetBSD: patch-ab,v 1.4 2003/02/09 08:46:36 shell Exp $
---- lib/ftp.c.orig Mon Apr 29 11:57:25 2002
-+++ lib/ftp.c Fri Jul 19 04:22:35 2002
-@@ -1576,12 +1576,13 @@
+--- lib/ftp.c.orig Sun Feb 9 16:35:53 2003
++++ lib/ftp.c
+@@ -1998,12 +1998,13 @@ CURLcode ftp_perform(struct connectdata
#ifdef HAVE_STRFTIME
- if(data->set.get_filetime && data->info.filetime) {
+ if(data->set.get_filetime && (data->info.filetime>=0) ) {
+ time_t filetime = data->info.filetime;
struct tm *tm;
#ifdef HAVE_LOCALTIME_R