diff options
author | Mark Brand <mabrand@mabrand.nl> | 2011-11-15 23:59:15 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2011-11-15 23:59:15 (GMT) |
commit | 83f18a507e83df17c75920495fc6e6d9a863bbbd (patch) | |
tree | 67592f82354058baf0b686ad0f1beb9759b0212c /src/curl-1-fixes.patch | |
parent | cbc357c55bf19b39f03a419fab1899d3ea9741d1 (diff) | |
download | mxe-83f18a507e83df17c75920495fc6e6d9a863bbbd.zip mxe-83f18a507e83df17c75920495fc6e6d9a863bbbd.tar.gz mxe-83f18a507e83df17c75920495fc6e6d9a863bbbd.tar.bz2 |
update package curl
Diffstat (limited to 'src/curl-1-fixes.patch')
-rw-r--r-- | src/curl-1-fixes.patch | 90 |
1 files changed, 3 insertions, 87 deletions
diff --git a/src/curl-1-fixes.patch b/src/curl-1-fixes.patch index 817a71f..42ef208 100644 --- a/src/curl-1-fixes.patch +++ b/src/curl-1-fixes.patch @@ -5,94 +5,10 @@ Commits backported (cherry-picked) from upstream. http://github.com/bagder/curl Also contains mingw-cross-env specific fixes. -From 39817fb04ff2ea4a693a1e853ca5fbd469c2b531 Mon Sep 17 00:00:00 2001 -From: Tim Harder <radhermit@gmail.com> -Date: Wed, 19 Oct 2011 10:08:56 +0200 -Subject: [PATCH 1/3] gtls: only call gnutls_transport_set_lowat with - <gnutls-2.12.0 - -The default lowat level for gnutls-2.12* is set to zero to avoid -unnecessary system calls and the gnutls_transport_set_lowat function has -been totally removed in >=gnutls-3 which causes build failures. - -Therefore, the function shouldn't be used except for versions that -require it, <gnutls-2.12.0. -(cherry picked from commit 8036da870c5b413a83097b3486c58d13910a471a) ---- - lib/gtls.c | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) - -diff --git a/lib/gtls.c b/lib/gtls.c -index f75a815..7ca46c8 100644 ---- a/lib/gtls.c -+++ b/lib/gtls.c -@@ -476,8 +476,10 @@ gtls_connect_step1(struct connectdata *conn, - gnutls_transport_set_push_function(session, Curl_gtls_push); - gnutls_transport_set_pull_function(session, Curl_gtls_pull); - -+#if GNUTLS_VERSION_NUMBER < 0x020c00 - /* lowat must be set to zero when using custom push and pull functions. */ - gnutls_transport_set_lowat(session, 0); -+#endif - - /* This might be a reconnect, so we check for a session ID in the cache - to speed up things */ --- -1.7.7 - - -From 878969d2e89751ff445b1f6cb6ac05ad0bc07eb6 Mon Sep 17 00:00:00 2001 -From: Yang Tse <yangsita@gmail.com> -Date: Sat, 29 Oct 2011 14:58:50 +0200 -Subject: [PATCH 2/3] gtls.c: gnutls_transport_set_global_errno() deprecated - in version 2.12.3 (cherry picked from commit - f5bb37018647f6088398ca127235ce776eec9bbe) - ---- - lib/gtls.c | 13 +++++++++++-- - 1 files changed, 11 insertions(+), 2 deletions(-) - -diff --git a/lib/gtls.c b/lib/gtls.c -index 7ca46c8..c1e9cae 100644 ---- a/lib/gtls.c -+++ b/lib/gtls.c -@@ -78,6 +78,17 @@ static void tls_log_func(int level, const char *str) - #endif - static bool gtls_inited = FALSE; - -+#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 -+# endif -+# if (GNUTLS_VERSION_NUMBER >= 0x020c03) -+# undef gnutls_transport_set_global_errno -+# define gnutls_transport_set_global_errno(A) SET_ERRNO((A)) -+# endif -+#endif -+ - /* - * Custom push and pull callback functions used by GNU TLS to read and write - * to the socket. These functions are simple wrappers to send() and recv() -@@ -476,10 +487,8 @@ gtls_connect_step1(struct connectdata *conn, - gnutls_transport_set_push_function(session, Curl_gtls_push); - gnutls_transport_set_pull_function(session, Curl_gtls_pull); - --#if GNUTLS_VERSION_NUMBER < 0x020c00 - /* lowat must be set to zero when using custom push and pull functions. */ - gnutls_transport_set_lowat(session, 0); --#endif - - /* This might be a reconnect, so we check for a session ID in the cache - to speed up things */ --- -1.7.7 - - -From 40ebff7ac932dd2c920d02c8a7aa9da584eafda1 Mon Sep 17 00:00:00 2001 +From 292b5d892f8858a6e9a6f0c94e08c4b15e547e87 Mon Sep 17 00:00:00 2001 From: Volker Grabsch <vog@notjusthosting.com> Date: Fri, 28 Oct 2011 13:48:04 +0200 -Subject: [PATCH 3/3] static linking for mingw-cross-env +Subject: [PATCH] static linking for mingw-cross-env --- include/curl/curlbuild.h.in | 3 +++ @@ -113,5 +29,5 @@ index fe348f4..c428273 100644 /* header file ws2tcpip.h must be included by the external interface. */ #undef CURL_PULL_WS2TCPIP_H -- -1.7.7 +1.7.7.3 |