summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-06-10 14:33:57 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-06-10 14:33:57 (GMT)
commit2d8a4862d09e2d77c0c3ed0f297c3d27b179db08 (patch)
treecfc73123278986d8d69fe08ee85da4799b15babf
parentec3bc9bbba71438374148118e539e75ee119a65f (diff)
parent84bb6afc5c9e6ffa9b2a2913ba3849020ec35abe (diff)
downloadQt-2d8a4862d09e2d77c0c3ed0f297c3d27b179db08.zip
Qt-2d8a4862d09e2d77c0c3ed0f297c3d27b179db08.tar.gz
Qt-2d8a4862d09e2d77c0c3ed0f297c3d27b179db08.tar.bz2
Merge remote branch 'mainline/4.7' into 4.7
Conflicts: src/gui/text/text.pri
-rw-r--r--mkspecs/features/symbian/def_files.prf3
-rw-r--r--mkspecs/features/symbian/def_files_disabled.prf2
2 files changed, 3 insertions, 2 deletions
diff --git a/mkspecs/features/symbian/def_files.prf b/mkspecs/features/symbian/def_files.prf
index 6a95763..1b8e551 100644
--- a/mkspecs/features/symbian/def_files.prf
+++ b/mkspecs/features/symbian/def_files.prf
@@ -7,7 +7,8 @@ symbian-abld|symbian-sbsv2 {
# Firstly, if the MMP_RULES already contain a defBlock variable, don't generate another one
# (this bit is slightly magic, because it depends upon everyone creating their DEFFILE statements
# in a defBlock variable; but otherwise we have to expand MMP_RULES then scan for the DEFFILE keyword)
- !contains(MMP_RULES, defBlock) {
+ # Similarly, explicit EXPORTUNFROZEN should block adding defBlock
+ !contains(MMP_RULES, defBlock):!contains(MMP_RULES, EXPORTUNFROZEN) {
# Apps are executables on Symbian, so don't have exports, and therefore don't have DEF files
# Plugins use standard DEF files, which qmake generates, so shouldn't be using these DEFFILE
# statements - they use the qmake generated statements instead
diff --git a/mkspecs/features/symbian/def_files_disabled.prf b/mkspecs/features/symbian/def_files_disabled.prf
index 557c5e3..0344911 100644
--- a/mkspecs/features/symbian/def_files_disabled.prf
+++ b/mkspecs/features/symbian/def_files_disabled.prf
@@ -8,6 +8,6 @@ CONFIG -= def_files
!contains(TEMPLATE, app):!contains(CONFIG, plugin):!contains(CONFIG, staticlib): {
# with EXPORTUNFROZEN enabled, new exports are included in the dll and dso/lib without
# needing to run abld/sbs freeze
- MMP_RULES += EXPORTUNFROZEN
+ MMP_RULES *= EXPORTUNFROZEN
}
}