summaryrefslogtreecommitdiffstats
path: root/src/proj-1-mutex-win32.patch
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-05-14 17:59:46 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-05-14 17:59:46 (GMT)
commit6f45b35ff46fcc339715d0360a9a998e0ef7cb2b (patch)
treef482f0f61d65733f3aed489715f9b5b44bb6c781 /src/proj-1-mutex-win32.patch
parent40f4cf1fbfe702ed8fce45868f88f4b52f3ae227 (diff)
downloadmxe-6f45b35ff46fcc339715d0360a9a998e0ef7cb2b.zip
mxe-6f45b35ff46fcc339715d0360a9a998e0ef7cb2b.tar.gz
mxe-6f45b35ff46fcc339715d0360a9a998e0ef7cb2b.tar.bz2
improved naming of patch files
Diffstat (limited to 'src/proj-1-mutex-win32.patch')
-rw-r--r--src/proj-1-mutex-win32.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/proj-1-mutex-win32.patch b/src/proj-1-mutex-win32.patch
new file mode 100644
index 0000000..00b3370
--- /dev/null
+++ b/src/proj-1-mutex-win32.patch
@@ -0,0 +1,18 @@
+This file is part of mingw-cross-env.
+See doc/index.html for further information.
+
+This patch has been taken from upstream. More information:
+http://trac.osgeo.org/proj/ticket/56
+http://trac.osgeo.org/proj/changeset/1790
+
+--- proj/src/pj_mutex.c (revision 1788)
++++ proj/src/pj_mutex.c (revision 1790)
+@@ -38,6 +38,8 @@
+ #endif
+
+-#ifdef _WIN32
++/* on win32 we always use win32 mutexes, even if pthreads are available */
++#if defined(_WIN32) && !defined(MUTEX_stub)
+ # define MUTEX_win32
++# undef MUTEX_pthread
+ #endif