summaryrefslogtreecommitdiffstats
path: root/src/gnutls-1-fixes.patch
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2011-03-25 16:21:46 (GMT)
committerMark Brand <mabrand@mabrand.nl>2011-03-25 16:21:46 (GMT)
commit257ed383f43db9425b6f798bfe3f99bd8909060f (patch)
tree72673b07ba8a795fcd2658763686876cd4b5e499 /src/gnutls-1-fixes.patch
parent675d7f944b49004df0dcefa99d146d951cb1686e (diff)
downloadmxe-257ed383f43db9425b6f798bfe3f99bd8909060f.zip
mxe-257ed383f43db9425b6f798bfe3f99bd8909060f.tar.gz
mxe-257ed383f43db9425b6f798bfe3f99bd8909060f.tar.bz2
upgrade package gnutls
Diffstat (limited to 'src/gnutls-1-fixes.patch')
-rw-r--r--src/gnutls-1-fixes.patch60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/gnutls-1-fixes.patch b/src/gnutls-1-fixes.patch
new file mode 100644
index 0000000..ab9356e
--- /dev/null
+++ b/src/gnutls-1-fixes.patch
@@ -0,0 +1,60 @@
+This file is part of mingw-cross-env.
+See doc/index.html for further information.
+
+Contains ad hoc patches for cross building.
+
+From e0633729f352fd3ca1dc31e11db0e03b0ec39132 Mon Sep 17 00:00:00 2001
+From: mingw-cross-env
+Date: Fri, 25 Mar 2011 16:09:35 +0100
+Subject: [PATCH 1/2] C++ compatibility fix
+
+
+diff --git a/lib/includes/gnutls/compat.h b/lib/includes/gnutls/compat.h
+index af02d92..6f200db 100644
+--- a/lib/includes/gnutls/compat.h
++++ b/lib/includes/gnutls/compat.h
+@@ -114,6 +114,10 @@
+ #define LIBGNUTLS_VERSION_NUMBER GNUTLS_VERSION_NUMBER
+ #define LIBGNUTLS_EXTRA_VERSION GNUTLS_VERSION
+
++#ifdef __cplusplus
++extern "C" {
++#endif
++
+ /* The gnutls_retr_st was deprecated by gnutls_certificate_retrieve_function()
+ * and gnutls_retr2_st.
+ */
+@@ -345,4 +349,7 @@ gnutls_sign_callback_get (gnutls_session_t session, void **userdata)
+
+ void gnutls_transport_set_lowat (gnutls_session_t session, int num) _GNUTLS_GCC_ATTR_DEPRECATED;
+
++#ifdef __cplusplus
++}
++#endif
+ #endif /* _GNUTLS_COMPAT_H */
+--
+1.7.4.1
+
+
+From 4e2d2db1c9ca65ddfd59eefa6802177559676328 Mon Sep 17 00:00:00 2001
+From: mingw-cross-env
+Date: Fri, 25 Mar 2011 16:10:53 +0100
+Subject: [PATCH 2/2] add parameter vaiable to avoid gcc error
+
+
+diff --git a/lib/system.c b/lib/system.c
+index f3bed5f..b795fca 100644
+--- a/lib/system.c
++++ b/lib/system.c
+@@ -50,7 +50,7 @@
+ #ifdef _WIN32
+
+ int
+-system_errno (gnutls_transport_ptr)
++system_errno (gnutls_transport_ptr p)
+ {
+ int tmperr = WSAGetLastError ();
+ int ret = 0;
+--
+1.7.4.1
+