summaryrefslogtreecommitdiffstats
path: root/src/gui/util
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-03-17 04:26:07 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-03-17 04:26:07 (GMT)
commitab5fbde3235a6d613a8dfb58deb79c67b70d9f55 (patch)
tree25a1c8df5f5239aedea7ae42060f282b7e44198e /src/gui/util
parent53fd1e2fd9c75d7d55606d4ac5df75eda96b9cc9 (diff)
parent864bd41f16c56a4c8565c4c6a7096048862167c1 (diff)
downloadQt-ab5fbde3235a6d613a8dfb58deb79c67b70d9f55.zip
Qt-ab5fbde3235a6d613a8dfb58deb79c67b70d9f55.tar.gz
Qt-ab5fbde3235a6d613a8dfb58deb79c67b70d9f55.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public: (190 commits) Fixed Symbian applications with DESTDIR set. Removed a warning about generated rss files. Revert "Temporarily disable problematic dll." Fixed "Cannot install protected application" message on Symbian. Worked around a crash in the elf2e32 postlinker tool. Worked around case differences in Symbian^3 and Gnupoc. Enabled compilation of plugins again. Fixed a building bug where the DLL entry point was undefined. Moved UID2 processing from cpp code to profiles. Added rpp and rsg files to ignore filter. Moved two profiles to the correct directory. Fix build break caused by undefined symbol SetDialogPreference Temporarily disable problematic dll. Use the same concept for per-lib tweaks as armcc Consistently use the * in configure Symbian doesn't have large file support currently, just turn it off Remove largefile config test Make sure that we have all compile flags available always Enabled dependencies for .dso and .lib libraries only. Switched to using DEF_FILE, which is the official variable. ...
Diffstat (limited to 'src/gui/util')
-rw-r--r--src/gui/util/util.pri9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/gui/util/util.pri b/src/gui/util/util.pri
index 3074367..bd2af85 100644
--- a/src/gui/util/util.pri
+++ b/src/gui/util/util.pri
@@ -41,5 +41,12 @@ embedded {
symbian {
LIBS += -lsendas2 -letext -lapmime
- contains(QT_CONFIG, s60): LIBS += -lplatformenv -lCommonUI
+ contains(QT_CONFIG, s60) {
+ LIBS += -lplatformenv
+ contains(CONFIG, is_using_gnupoc) {
+ LIBS += -lcommonui
+ } else {
+ LIBS += -lCommonUI
+ }
+ }
}