summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2011-11-25 13:41:37 (GMT)
committerMark Brand <mabrand@mabrand.nl>2011-11-25 13:41:37 (GMT)
commitc09eb69935bddfa68f49d944d58f99b52822c220 (patch)
tree7019f6ef41b7a14b856642ae9bdafe4d368cfd2d
parentbc70ffb99ea1582a98a0e1cc7033fb3181ab2b89 (diff)
downloadmxe-c09eb69935bddfa68f49d944d58f99b52822c220.zip
mxe-c09eb69935bddfa68f49d944d58f99b52822c220.tar.gz
mxe-c09eb69935bddfa68f49d944d58f99b52822c220.tar.bz2
package curl: update cherrypicks
-rw-r--r--src/curl-1-fixes.patch98
1 files changed, 89 insertions, 9 deletions
diff --git a/src/curl-1-fixes.patch b/src/curl-1-fixes.patch
index 807e3ac..4b7a461 100644
--- a/src/curl-1-fixes.patch
+++ b/src/curl-1-fixes.patch
@@ -8,7 +8,7 @@ Also contains mingw-cross-env specific fixes.
From 017b42a86ec4cac8a4cd71cc607d0a4d201ff4fd Mon Sep 17 00:00:00 2001
From: Volker Grabsch <vog@notjusthosting.com>
Date: Fri, 28 Oct 2011 13:48:04 +0200
-Subject: [PATCH 1/3] static linking for mingw-cross-env
+Subject: [PATCH 1/4] static linking for mingw-cross-env
---
include/curl/curlbuild.h.in | 3 +++
@@ -35,7 +35,7 @@ index fe348f4..c428273 100644
From 1ce66d38f2696a25aeac411beaf9e291c8775fe5 Mon Sep 17 00:00:00 2001
From: Martin Storsjo <martin@martin.st>
Date: Tue, 15 Nov 2011 11:52:32 +0200
-Subject: [PATCH 2/3] Add support for using nettle instead of gcrypt as gnutls
+Subject: [PATCH 2/4] Add support for using nettle instead of gcrypt as gnutls
backend (cherry picked from commit
64f328c787ab763cc994eadd6b82f32490d37ebb)
@@ -276,21 +276,21 @@ index f26e027..cf8e053 100644
1.7.7.3
-From 3a29c02d08305d5242643e18f7e9d9009a98dcc1 Mon Sep 17 00:00:00 2001
+From 380fb5054be1ccd85a80220fafbfcb33e1010f05 Mon Sep 17 00:00:00 2001
From: Mark Brand <mabrand@mabrand.nl>
Date: Tue, 22 Nov 2011 22:48:15 +0100
-Subject: [PATCH 3/3] only translate winsock errors for old gnutls versions
+Subject: [PATCH 3/4] gnutls: only translate winsock errors for old versions
Bugfix: https handshake fails using gnutls 3 on windows
http://sourceforge.net/tracker/index.php?func=detail&aid=3441084&group_id=976&atid=100976
New gnutls versions have an error handler that knows about Winsock
-errors, which is why gnutls_transport_set_global_errno()
-was deprecated and then removed.
+errors, which is why gnutls_transport_set_global_errno() was deprecated
+and then removed.
-This is a correction of commit f5bb370 (blame me) which meant
-to reimplement gnutls_transport_set_global_errno(), which is not
-necessary.
+This is a correction of commit f5bb370 (blame me) which meant to
+reimplement gnutls_transport_set_global_errno(), which is not necessary.
+(cherry picked from commit 28bac99674f199898f3e803fcfc4167a56a4c058)
---
lib/gtls.c | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
@@ -358,3 +358,83 @@ index a98a7e8..c64c8c4 100644
--
1.7.7.3
+
+From 53b8a80e2e1d3a9a51ed461210a5244abdb0edfb Mon Sep 17 00:00:00 2001
+From: Yang Tse <yangsita@gmail.com>
+Date: Thu, 24 Nov 2011 12:11:52 +0100
+Subject: [PATCH 4/4] Fix unreleased regression when using windows gnutls
+ versions older than 2.8 (cherry picked from commit
+ 78feaff9d800efb5d1f97f8653721718a6cf00c8)
+
+---
+ lib/gtls.c | 18 +++++++++---------
+ 1 files changed, 9 insertions(+), 9 deletions(-)
+
+diff --git a/lib/gtls.c b/lib/gtls.c
+index c64c8c4..a2e8d99 100644
+--- a/lib/gtls.c
++++ b/lib/gtls.c
+@@ -80,17 +80,14 @@ static void tls_log_func(int level, const char *str)
+ #endif
+ static bool gtls_inited = FALSE;
+
+-#undef MAP_WINSOCK_ERRORS
+ #if defined(GNUTLS_VERSION_NUMBER)
+ # if (GNUTLS_VERSION_NUMBER >= 0x020c00)
+ # undef gnutls_transport_set_lowat
+ # define gnutls_transport_set_lowat(A,B) Curl_nop_stmt
+ # define USE_GNUTLS_PRIORITY_SET_DIRECT 1
+ # endif
+-# if (GNUTLS_VERSION_NUMBER < 0x020c03)
+-# ifdef USE_WINSOCK
+-# define MAP_WINSOCK_ERRORS
+-# endif
++# if (GNUTLS_VERSION_NUMBER >= 0x020c03)
++# define GNUTLS_MAPS_WINSOCK_ERRORS 1
+ # endif
+ #endif
+
+@@ -102,7 +99,6 @@ static bool gtls_inited = FALSE;
+ * us to get specific about the fourth "flags" argument, and to use arbitrary
+ * private data with gnutls_transport_set_ptr if we wish.
+ *
+- * For old gnutls versions, curl must translate Winsock errors:
+ * When these custom push and pull callbacks fail, GNU TLS checks its own
+ * session-specific error variable, and when not set also its own global
+ * errno variable, in order to take appropriate action. GNU TLS does not
+@@ -112,9 +108,13 @@ static bool gtls_inited = FALSE;
+ * resort global errno variable using gnutls_transport_set_global_errno,
+ * with a transport agnostic error value. This implies that some winsock
+ * error translation must take place in these callbacks.
++ *
++ * Paragraph above applies to GNU TLS versions older than 2.12.3, since
++ * this version GNU TLS does its own internal winsock error translation
++ * using system_errno() function.
+ */
+
+-#ifdef MAP_WINSOCK_ERRORS
++#if defined(USE_WINSOCK) && !defined(GNUTLS_MAPS_WINSOCK_ERRORS)
+ # define gtls_EINTR 4
+ # define gtls_EIO 5
+ # define gtls_EAGAIN 11
+@@ -135,7 +135,7 @@ static int gtls_mapped_sockerrno(void)
+ static ssize_t Curl_gtls_push(void *s, const void *buf, size_t len)
+ {
+ ssize_t ret = swrite(GNUTLS_POINTER_TO_INT_CAST(s), buf, len);
+-#ifdef MAP_WINSOCK_ERRORS
++#if defined(USE_WINSOCK) && !defined(GNUTLS_MAPS_WINSOCK_ERRORS)
+ if(ret < 0)
+ gnutls_transport_set_global_errno(gtls_mapped_sockerrno());
+ #endif
+@@ -145,7 +145,7 @@ static ssize_t Curl_gtls_push(void *s, const void *buf, size_t len)
+ static ssize_t Curl_gtls_pull(void *s, void *buf, size_t len)
+ {
+ ssize_t ret = sread(GNUTLS_POINTER_TO_INT_CAST(s), buf, len);
+-#ifdef MAP_WINSOCK_ERRORS
++#if defined(USE_WINSOCK) && !defined(GNUTLS_MAPS_WINSOCK_ERRORS)
+ if(ret < 0)
+ gnutls_transport_set_global_errno(gtls_mapped_sockerrno());
+ #endif
+--
+1.7.7.3
+