summaryrefslogtreecommitdiff
path: root/www/curl
diff options
context:
space:
mode:
Diffstat (limited to 'www/curl')
-rw-r--r--www/curl/Makefile5
-rw-r--r--www/curl/distinfo7
-rw-r--r--www/curl/patches/patch-ab19
3 files changed, 5 insertions, 26 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile
index d6648156549..96cf1758a02 100644
--- a/www/curl/Makefile
+++ b/www/curl/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.38 2004/03/26 02:27:56 wiz Exp $
+# $NetBSD: Makefile,v 1.39 2004/03/28 20:47:05 xtraeme Exp $
-DISTNAME= curl-7.11.0
-PKGREVISION= 1
+DISTNAME= curl-7.11.1
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 a6b44ad968f..3fd84e9778c 100644
--- a/www/curl/distinfo
+++ b/www/curl/distinfo
@@ -1,5 +1,4 @@
-$NetBSD: distinfo,v 1.23 2004/01/23 22:52:29 recht Exp $
+$NetBSD: distinfo,v 1.24 2004/03/28 20:47:05 xtraeme Exp $
-SHA1 (curl-7.11.0.tar.gz) = e14fe506347a0f415e348aae1320943f2f618e17
-Size (curl-7.11.0.tar.gz) = 1355754 bytes
-SHA1 (patch-ab) = eee97325b6ea00d810ecbf74db045985408a3db9
+SHA1 (curl-7.11.1.tar.gz) = 8754a27704f741d51f387eec4a5a03428a4d4b08
+Size (curl-7.11.1.tar.gz) = 1422533 bytes
diff --git a/www/curl/patches/patch-ab b/www/curl/patches/patch-ab
deleted file mode 100644
index 0c3257d801a..00000000000
--- a/www/curl/patches/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-ab,v 1.8 2004/01/23 22:52:29 recht Exp $
-
---- lib/ftp.c.orig 2004-01-21 17:50:05.000000000 +0100
-+++ lib/ftp.c 2004-01-23 23:46:58.000000000 +0100
-@@ -2210,11 +2210,12 @@
- #ifdef HAVE_STRFTIME
- if(data->set.get_filetime && (data->info.filetime>=0) ) {
- struct tm *tm;
-+ time_t filetime = data->info.filetime;
- #ifdef HAVE_GMTIME_R
- struct tm buffer;
-- tm = (struct tm *)gmtime_r((time_t *)&data->info.filetime, &buffer);
-+ tm = (struct tm *)gmtime_r(&filetime, &buffer);
- #else
-- tm = gmtime((time_t *)&data->info.filetime);
-+ tm = gmtime(&filetime);
- #endif
- /* format: "Tue, 15 Nov 1994 12:45:26" */
- strftime(buf, BUFSIZE-1, "Last-Modified: %a, %d %b %Y %H:%M:%S GMT\r\n",