summaryrefslogtreecommitdiffstats
path: root/tools/configure
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2010-07-21 15:52:40 +0200
committerJoerg Bornemann <joerg.bornemann@nokia.com>2010-07-21 15:57:07 +0200
commitd8fbc4e0264f8bfabc12bc49ed7724eb2c96c93e (patch)
tree78c370cd4f8e8f902ff4042c7cf280d8dfa0f204 /tools/configure
parent55c818b8f3fdb50087d1f5553662cd4db302f495 (diff)
make "configure -qt-gif" work again on Windows
The value for GIF must be "plugin" and not "yes". Reviewed-by: danimo
Diffstat (limited to 'tools/configure')
-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 c3498e3d5e..f7dac93a2c 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";