diff options
author | Marius Storm-Olsen <marius.storm-olsen@nokia.com> | 2009-08-14 09:53:48 (GMT) |
---|---|---|
committer | Marius Storm-Olsen <marius.storm-olsen@nokia.com> | 2009-08-14 09:53:48 (GMT) |
commit | 69e53a801b93797a7398415d681c6e1c428d3a1c (patch) | |
tree | 999c864d25f91f78ee185a79d68079e68dc27b22 /tools | |
parent | ba4128383be023bef949dbacf568af08d7f884ea (diff) | |
download | Qt-69e53a801b93797a7398415d681c6e1c428d3a1c.zip Qt-69e53a801b93797a7398415d681c6e1c428d3a1c.tar.gz Qt-69e53a801b93797a7398415d681c6e1c428d3a1c.tar.bz2 |
Make Script and ScriptTools availability the same as WebKit
Also build new binary.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/configure/configureapp.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 9f6d0e0..54360f7 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -1883,10 +1883,8 @@ bool Configure::checkAvailability(const QString &part) } } else if (part == "MULTIMEDIA") { available = true; - } else if (part == "WEBKIT") { + } else if (part == "WEBKIT" || part == "SCRIPT" || part == "SCRIPTTOOLS") { available = (dictionary.value("QMAKESPEC") == "win32-msvc2005") || (dictionary.value("QMAKESPEC") == "win32-msvc2008") || (dictionary.value("QMAKESPEC") == "win32-g++"); - } else if (part == "SCRIPT" || part == "SCRIPTTOOLS") { - available = true; } return available; |