Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
dont perform ipc checks for win32
Browse files Browse the repository at this point in the history
Taken from:
http://pkgs.fedoraproject.org/cgit/mingw-qt.git/plain/qt-dont-perform-ipc-checks-for-win32.patch?id2=HEAD

"The configure script thinks that there is no IPC/shared memory
support for this platform, while there is support. Fix the configure
script"
  • Loading branch information
Daniel Burr authored and ashkulz committed May 5, 2018
1 parent 66499cc commit d6c0fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -5373,7 +5373,7 @@ if [ "$XPLATFORM_INTEGRITY" = "yes" ]; then
fi

# check IPC support
if [ "$XPLATFORM_SYMBIAN_SBSV2" = "no" ]; then
if [ "$XPLATFORM_SYMBIAN_SBSV2" = "no" -a "$XPLATFORM_MINGW" = "no" ]; then
# Raptor does not support configure tests.
if ! compileTest unix/ipc_sysv "ipc_sysv" ; then
# SYSV IPC is not supported - check POSIX IPC
Expand Down

0 comments on commit d6c0fc5

Please sign in to comment.