diff options
author | Milan Crha <mcrha@redhat.com> | 2014-08-25 17:36:19 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-08-25 17:36:19 +0800 |
commit | 396e5e82c16d3d81e1e575e02fe05a77149ed0ea (patch) | |
tree | 655b4918d46b56a1a638f6c4d4476c727530ea17 /win32/patches/gnutls.patch | |
parent | 9a8604400946bf0fe5d1fa227fa2524e9baf4fb0 (diff) | |
download | gsoc2013-evolution-396e5e82c16d3d81e1e575e02fe05a77149ed0ea.tar gsoc2013-evolution-396e5e82c16d3d81e1e575e02fe05a77149ed0ea.tar.gz gsoc2013-evolution-396e5e82c16d3d81e1e575e02fe05a77149ed0ea.tar.bz2 gsoc2013-evolution-396e5e82c16d3d81e1e575e02fe05a77149ed0ea.tar.lz gsoc2013-evolution-396e5e82c16d3d81e1e575e02fe05a77149ed0ea.tar.xz gsoc2013-evolution-396e5e82c16d3d81e1e575e02fe05a77149ed0ea.tar.zst gsoc2013-evolution-396e5e82c16d3d81e1e575e02fe05a77149ed0ea.zip |
Add Win32 build scripts into sources
See win32/readme.txt for more information.
Diffstat (limited to 'win32/patches/gnutls.patch')
-rw-r--r-- | win32/patches/gnutls.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/win32/patches/gnutls.patch b/win32/patches/gnutls.patch new file mode 100644 index 0000000000..6960842292 --- /dev/null +++ b/win32/patches/gnutls.patch @@ -0,0 +1,21 @@ +diff -upr gnutls-3.2.12.old/lib/libgnutls.map gnutls-3.2.12/lib/libgnutls.map +--- gnutls-3.2.12.old/lib/libgnutls.map 2014-03-24 22:56:11 +0000 ++++ gnutls-3.2.12/lib/libgnutls.map 2014-03-23 20:24:12 +0000 +@@ -936,6 +936,7 @@ GNUTLS_PRIVATE { + _gnutls_read_uint24; + _gnutls_get_cred; + _gnutls_recv_int; ++ _gnutls_vasprintf; + # Internal symbols needed by libgnutls-openssl: + _gnutls_pkix1_asn; + _gnutls_x509_parse_dn_oid; +diff -upr gnutls-3.2.12.old/lib/vasprintf.c gnutls-3.2.12/lib/vasprintf.c +--- gnutls-3.2.12.old/lib/vasprintf.c 2014-03-24 22:56:11 +0000 ++++ gnutls-3.2.12/lib/vasprintf.c 2014-03-23 20:24:12 +0000 +@@ -1,5 +1,6 @@ + #include <config.h> + #include <stdio.h> ++#include <stdlib.h> + #include "vasprintf.h" + + #ifndef HAVE_VASPRINTF |