summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPulse Build System <qt-info@nokia.com>2010-01-27 00:06:49 (GMT)
committerPulse Build System <qt-info@nokia.com>2010-01-27 00:06:49 (GMT)
commitd7d4abbcbf4f39a0b3d568af111c81be18d2a83a (patch)
tree5e237ac1c8c76b6fbb63e20c0ac58e873444cbfb /tools
parent1b54b600107e33cfbebaea3b2bd3c7f24385a1a8 (diff)
parent9eea7172d4d4984a111f009a60f5eaa0568fcf89 (diff)
downloadQt-d7d4abbcbf4f39a0b3d568af111c81be18d2a83a.zip
Qt-d7d4abbcbf4f39a0b3d568af111c81be18d2a83a.tar.gz
Qt-d7d4abbcbf4f39a0b3d568af111c81be18d2a83a.tar.bz2
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt-s60-public into 4.6-integration
* '4.6' of git@scm.dev.nokia.troll.no:qt/qt-s60-public: Remove unneeded resources from QtGui Remove warnings Fix broken build of simulated QS60Style Updates to new Symbian DEF file system
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 3f105b5..7751143 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -1829,9 +1829,9 @@ bool Configure::displayHelp()
desc("FREETYPE", "yes", "-qt-freetype", "Use the libfreetype bundled with Qt.");
desc( "-fpu <flags>", "VFP type on ARM, supported options: softvfp(default) | vfpv2 | softvfp+vfpv2");
desc("S60", "no", "-no-s60", "Do not compile in S60 support.");
- desc("S60", "yes", "-s60", "Compile with support for the S60 UI Framework\n");
- desc("SYMBIAN_DEFFILES", "no", "no-usedeffiles", "Disable the usage of DEF files.");
- desc("SYMBIAN_DEFFILES", "yes", "usedeffiles", "Enable the usage of DEF files.\n");
+ desc("S60", "yes", "-s60", "Compile with support for the S60 UI Framework");
+ desc("SYMBIAN_DEFFILES", "no", "-no-usedeffiles", "Disable the usage of DEF files.");
+ desc("SYMBIAN_DEFFILES", "yes", "-usedeffiles", "Enable the usage of DEF files.\n");
return true;
}
return false;
@@ -2753,10 +2753,12 @@ void Configure::generateCachefile()
if ( dictionary["PLUGIN_MANIFESTS"] == "no" )
configStream << " no_plugin_manifest";
- if ( dictionary["SYMBIAN_DEFFILES"] == "yes" ) {
- configStream << " def_files";
- } else if ( dictionary["SYMBIAN_DEFFILES"] == "no" ) {
- configStream << " def_files_disabled";
+ if ( dictionary.contains("SYMBIAN_DEFFILES") ) {
+ if(dictionary["SYMBIAN_DEFFILES"] == "yes" ) {
+ configStream << " def_files";
+ } else if ( dictionary["SYMBIAN_DEFFILES"] == "no" ) {
+ configStream << " def_files_disabled";
+ }
}
configStream << endl;
configStream << "QT_ARCH = " << dictionary[ "ARCHITECTURE" ] << endl;