summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer.qnx@kdab.com>2012-06-05 10:35:34 +0100
committerQt by Nokia <qt-info@nokia.com>2012-06-06 12:31:58 +0200
commite92c33bff5d393bbf6e735f58a02608ec4e11e56 (patch)
treee0d48ee1862e71404b8d93a7469e6b6894b8b05e /configure
parente8cd9a617d85deebb6407973fd1fb11a6486ee99 (diff)
Do not build eglfs QPA when cross compiling for QNX
Commit 2a1b50d67c1f2f4c5bd5efe048080989db37f44f introduced a dependency on evdev for eglfs which QNX does not provide. QNX also has a dedicated QPA plugin so the eglfs plugin is not needed there. It is not possible to use the -device configure defaults approach as it is not cross-platform. Change-Id: I2d151f16cf1a9576a0b0b528f0e9c17834c66e91 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index d605fe07e2..d74eb10723 100755
--- a/configure
+++ b/configure
@@ -4742,7 +4742,7 @@ elif [ "$CFG_OPENGL" = "desktop" ]; then
fi
if [ "$CFG_EGLFS" != "no" ]; then
- if [ "$CFG_OPENGL" = "es2" ]; then
+ if [ "$CFG_OPENGL" = "es2" ] && [ "$XPLATFORM_QNX" = "no" ]; then
CFG_EGLFS="$CFG_EGL"
else
CFG_EGLFS="no"