diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2010-07-21 13:52:40 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2010-07-21 13:57:07 (GMT) |
commit | d8fbc4e0264f8bfabc12bc49ed7724eb2c96c93e (patch) | |
tree | 78c370cd4f8e8f902ff4042c7cf280d8dfa0f204 /tools/configure/configureapp.cpp | |
parent | 55c818b8f3fdb50087d1f5553662cd4db302f495 (diff) | |
download | Qt-d8fbc4e0264f8bfabc12bc49ed7724eb2c96c93e.zip Qt-d8fbc4e0264f8bfabc12bc49ed7724eb2c96c93e.tar.gz Qt-d8fbc4e0264f8bfabc12bc49ed7724eb2c96c93e.tar.bz2 |
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/configureapp.cpp')
-rw-r--r-- | tools/configure/configureapp.cpp | 4 |
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"; |