summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKent Hansen <kent.hansen@nokia.com>2011-09-01 14:23:53 +0200
committerQt by Nokia <qt-info@nokia.com>2011-09-01 16:14:18 +0200
commit9bb0cc30ee8566e8c99865a657afd275d2d2f477 (patch)
treeb2b325ca77727d7e220dbfc34a255cae8c36838d /configure
parentc34b51eb52ab2d9e6af454d2cb5857fe30ef019d (diff)
Check for V8 when auto-enabling Declarative module
Declarative no longer used QtScript, it uses V8. This check in the configure script was stale. Change-Id: I3c598c0343fc421fdd191a256e07eaa6f4e80058 Reviewed-on: http://codereview.qt.nokia.com/4077 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 35ffeee6a0..83d5662912 100755
--- a/configure
+++ b/configure
@@ -7650,7 +7650,7 @@ if [ "$CFG_DECLARATIVE" = "yes" ]; then
fi
fi
if [ "$CFG_DECLARATIVE" = "auto" ]; then
- if [ "$CFG_SCRIPT" = "no" -o "$CFG_GUI" = "no" ]; then
+ if [ "$CFG_V8" = "no" -o "$CFG_GUI" = "no" ]; then
CFG_DECLARATIVE=no
else
CFG_DECLARATIVE=yes