From 9bb0cc30ee8566e8c99865a657afd275d2d2f477 Mon Sep 17 00:00:00 2001 From: Kent Hansen Date: Thu, 1 Sep 2011 14:23:53 +0200 Subject: 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 Reviewed-by: Qt Sanity Bot --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3