summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorGirish Ramakrishnan <girish.1.ramakrishnan@nokia.com>2012-06-07 15:05:19 -0700
committerQt by Nokia <qt-info@nokia.com>2012-06-08 17:56:09 +0200
commita95e396a83930de14c6964dbf3724d6162d8400b (patch)
tree6be88451d805f69f1e408202576574ad47e00234 /configure
parent7525e85798886d8eaa539798baeb58d3bad3f771 (diff)
eglfs: Disable eglfs when evdev is not present
EGLFS has a hard dependency on evdev, so don't compile it when evdev is not present. This also removes the check that disabled EGLFS specifically for QNX. Since QNX doesn't have evdev, EGLFS will get disabled automatically. Change-Id: I9fdb364b2eff9b370fa238609a8f98af6ccb7f7b Reviewed-by: Sean Harmer <sean.harmer@kdab.com> 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 9c9436c86a..64efde3ec1 100755
--- a/configure
+++ b/configure
@@ -4743,7 +4743,7 @@ elif [ "$CFG_OPENGL" = "desktop" ]; then
fi
if [ "$CFG_EGLFS" != "no" ]; then
- if [ "$CFG_OPENGL" = "es2" ] && [ "$XPLATFORM_QNX" = "no" ]; then
+ if [ "$CFG_OPENGL" = "es2" ] && [ "$CFG_EVDEV" = "yes" ]; then
CFG_EGLFS="$CFG_EGL"
else
CFG_EGLFS="no"