summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2010-07-21 13:52:40 (GMT)
committerToby Tomkins <toby.tomkins@nokia.com>2010-07-29 04:01:17 (GMT)
commit3557e6b68774d2fc0c9d80bb7250808ea662b1ac (patch)
tree3ee55acf820b04cee56bf7add43b1656f661a484 /tools
parent5c0d4e26cc31d18c8db1f2a01a10a994836101f2 (diff)
downloadQt-3557e6b68774d2fc0c9d80bb7250808ea662b1ac.zip
Qt-3557e6b68774d2fc0c9d80bb7250808ea662b1ac.tar.gz
Qt-3557e6b68774d2fc0c9d80bb7250808ea662b1ac.tar.bz2
make "configure -qt-gif" work again on Windows
The value for GIF must be "plugin" and not "yes". Reviewed-by: danimo (cherry picked from commit d8fbc4e0264f8bfabc12bc49ed7724eb2c96c93e)
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index c3498e3..f7dac93 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -581,8 +581,8 @@ void Configure::parseCmdLine()
// Image formats --------------------------------------------
else if (configCmdLine.at(i) == "-no-gif")
dictionary[ "GIF" ] = "no";
- else if (configCmdLine.at(i) == "-qt-gif")
- dictionary[ "GIF" ] = "yes";
+ else if (configCmdLine.at(i) == "-qt-gif")
+ dictionary[ "GIF" ] = "plugin";
else if (configCmdLine.at(i) == "-no-libtiff") {
dictionary[ "TIFF"] = "no";