aboutsummarylogtreecommitdiffstats
path: root/0003-Don-t-set-QT_NO_SYSTEMSEMAPHORE-for-Windows.patch
diff options
context:
space:
mode:
Diffstat (limited to '0003-Don-t-set-QT_NO_SYSTEMSEMAPHORE-for-Windows.patch')
-rw-r--r--0003-Don-t-set-QT_NO_SYSTEMSEMAPHORE-for-Windows.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/0003-Don-t-set-QT_NO_SYSTEMSEMAPHORE-for-Windows.patch b/0003-Don-t-set-QT_NO_SYSTEMSEMAPHORE-for-Windows.patch
new file mode 100644
index 000000000000..611b83149d4e
--- /dev/null
+++ b/0003-Don-t-set-QT_NO_SYSTEMSEMAPHORE-for-Windows.patch
@@ -0,0 +1,25 @@
+From 93f3b6c5d93a539bcebd3087b6209a9dd81104fd Mon Sep 17 00:00:00 2001
+From: Mark Brand <mabrand@mabrand.nl>
+Date: Thu, 6 Aug 2015 13:24:56 +0200
+Subject: [PATCH 03/26] Don't set QT_NO_SYSTEMSEMAPHORE for Windows
+
+---
+ configure | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure b/configure
+index 43b55f0..de2c3ec 100755
+--- a/configure
++++ b/configure
+@@ -4656,7 +4656,7 @@ fi
+ [ "$XPLATFORM_ANDROID" = "yes" ] && QMakeVar add styles "android"
+
+ # check IPC support
+-if ! compileTest unix/ipc_sysv "ipc_sysv" ; then
++if [ "$XPLATFORM_MINGW" = "no" ] && ! compileTest unix/ipc_sysv "ipc_sysv" ; then
+ # SYSV IPC is not supported - check POSIX IPC
+ if compileTest unix/ipc_posix "ipc_posix" ; then
+ QCONFIG_FLAGS="$QCONFIG_FLAGS QT_POSIX_IPC"
+--
+2.10.2
+