summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2016-02-08 17:35:31 +0000
committeradam <adam@pkgsrc.org>2016-02-08 17:35:31 +0000
commitb39515a6827ff883427ce16c9df715f0d7aee0aa (patch)
tree5dd8f8a28f566facfb33d91d556ea323779ba339 /www
parent5fc5fd99332a6aaede519eb85bafb204cc6377d6 (diff)
downloadpkgsrc-b39515a6827ff883427ce16c9df715f0d7aee0aa.tar.gz
Changes 7.47.1:
Bugfixes: * getredirect.c: fix variable name * tool_doswin: silence unused function warning * cmake: fixed when OpenSSL enabled on Windows and schannel detected * curl.1: Explain remote-name behavior if file already exists * tool_operate: Don't sanitize --output path (Windows) * URLs: change all http:// URLs to https:// in documentation & comments * sasl_sspi: Fix memory leak in domain populate * COPYING: clarify that Daniel is not the sole author * examples/htmltitle: Use _stricmp on Windows * examples/asiohiper: Avoid function name collision on Windows * idn_win32: Better error checking * openssl: Fix signed/unsigned mismatch warning in X509V3_ext * curl save files: check for backslashes on cygwin
Diffstat (limited to 'www')
-rw-r--r--www/curl/Makefile4
-rw-r--r--www/curl/distinfo11
-rw-r--r--www/curl/patches/patch-doc_examples_getredirect_c17
3 files changed, 7 insertions, 25 deletions
diff --git a/www/curl/Makefile b/www/curl/Makefile
index 00ed02f4cd5..8e2fbb41650 100644
--- a/www/curl/Makefile
+++ b/www/curl/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.158 2016/01/28 12:04:45 wiz Exp $
+# $NetBSD: Makefile,v 1.159 2016/02/08 17:35:31 adam Exp $
-DISTNAME= curl-7.47.0
+DISTNAME= curl-7.47.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 1217a966efd..93fef72efab 100644
--- a/www/curl/distinfo
+++ b/www/curl/distinfo
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.114 2016/02/01 13:15:27 mef Exp $
+$NetBSD: distinfo,v 1.115 2016/02/08 17:35:31 adam Exp $
-SHA1 (curl-7.47.0.tar.bz2) = 0f8112c50acf1c3896906643adb7f1aeb9b8b633
-RMD160 (curl-7.47.0.tar.bz2) = 5f4a9f97d3788ee93025be069b5bf43e85044787
-SHA512 (curl-7.47.0.tar.bz2) = cd85b7c46b693e0d0f50c42030c9e63de98ac9a61183dcf89d9e4883260692e07a1d844f204313e55b66a64d48073b20f1b34d7ec9216064582ca8607459a6e1
-Size (curl-7.47.0.tar.bz2) = 3498935 bytes
+SHA1 (curl-7.47.1.tar.bz2) = db57162affecaa320b462e35d2adbb37bf30bbe7
+RMD160 (curl-7.47.1.tar.bz2) = cfcdd8632aab2a8ef40435ae1ed7f499741cb1f3
+SHA512 (curl-7.47.1.tar.bz2) = e99d94dfdd349df0603de21687039c69765d40ae6bd73bd8ccdb6d046903a94e590a9cc903f378f8d030997a29bf0394ac5e342c9989a815679f9ea4fa79913f
+Size (curl-7.47.1.tar.bz2) = 3506256 bytes
SHA1 (patch-aa) = 793701d5ecc3343170fb437906c9adb74763cd13
SHA1 (patch-curl-config.in) = d0cc7bb6a5bf0b9257f40dcffce7093cc0098eb7
-SHA1 (patch-doc_examples_getredirect_c) = 15261b9f25b012691aa129fc3d7585e989ac8444
SHA1 (patch-lib_hostcheck.c) = 8e772d3f91cdafae17281cc19004269ece0cf308
diff --git a/www/curl/patches/patch-doc_examples_getredirect_c b/www/curl/patches/patch-doc_examples_getredirect_c
deleted file mode 100644
index 735af8f22fa..00000000000
--- a/www/curl/patches/patch-doc_examples_getredirect_c
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-doc_examples_getredirect_c,v 1.2 2016/02/01 13:15:27 mef Exp $
-
-Simple typo in examle code, but this needs make test to pass
-(when PKGSRC_RUN_TEST= yes).
-I've reported this to upstream.
-
---- docs/examples/getredirect.c~ 2016-01-15 00:37:49.000000000 +0900
-+++ docs/examples/getredirect.c 2016-02-01 21:52:01.000000000 +0900
-@@ -48,7 +48,7 @@ int main(void)
- else {
- res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
- if((res == CURLE_OK) &&
-- ((code / 100) != 3)) {
-+ ((response_code / 100) != 3)) {
- /* a redirect implies a 3xx response code */
- fprintf(stderr, "Not a redirect.\n");
- }