summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorOleh Vasyura <ext-oleh.2.vasyura@nokia.com>2010-11-22 13:26:06 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-12-03 12:45:41 (GMT)
commitb611d84da963372b180b98e0e76761b60f7f23f4 (patch)
treeba9bbbb6e8f617ef2346c1e133ec3424362d01c2 /configure
parent62385d41ba287908439fb97ab079951e136a9039 (diff)
downloadQt-b611d84da963372b180b98e0e76761b60f7f23f4.zip
Qt-b611d84da963372b180b98e0e76761b60f7f23f4.tar.gz
Qt-b611d84da963372b180b98e0e76761b60f7f23f4.tar.bz2
Disable OpenGL on Symbian only by default instead of always
Reviewed-by: ossi
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure b/configure
index 6eb2a99..9ffb8a2 100755
--- a/configure
+++ b/configure
@@ -6670,10 +6670,12 @@ else
QCONFIG_FLAGS="$QCONFIG_FLAGS QT_STYLE_S60"
fi
-# Disable OpenGL on Symbian.
+# Just check if OpenGL is not set by command argumets for Symbian.
case "$XPLATFORM" in
symbian*)
- CFG_OPENGL="no"
+ if [ "$CFG_OPENGL" = "auto" ]; then
+ CFG_OPENGL="no"
+ fi
;;
esac