summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2009-04-27 13:30:48 +0300
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2009-04-27 13:30:48 +0300
commita61f1978ec17120d3902e5ef7d625abb07d6c402 (patch)
treea19831991167fc8b25b00be8b2a7350e8f7b2de8 /src
parent14e75e741c78313b9d13fd9597a3eed6df834365 (diff)
Workaround for problems with paging Core and Sql libs
Diffstat (limited to 'src')
-rw-r--r--src/corelib/corelib.pro8
-rw-r--r--src/sql/sql.pro8
2 files changed, 14 insertions, 2 deletions
diff --git a/src/corelib/corelib.pro b/src/corelib/corelib.pro
index 469225eb7f..c55c2da1ab 100644
--- a/src/corelib/corelib.pro
+++ b/src/corelib/corelib.pro
@@ -27,4 +27,10 @@ QMAKE_DYNAMIC_LIST_FILE = $$PWD/QtCore.dynlist
contains(DEFINES,QT_EVAL):include(eval.pri)
-symbian:TARGET.UID3=0x2001B2DC \ No newline at end of file
+symbian: {
+ TARGET.UID3=0x2001B2DC
+
+ # Workaroud for problems with paging this dll
+ MMP_RULES -= PAGED
+ MMP_RULES *= UNPAGED
+} \ No newline at end of file
diff --git a/src/sql/sql.pro b/src/sql/sql.pro
index f089dd73c1..60be7486e0 100644
--- a/src/sql/sql.pro
+++ b/src/sql/sql.pro
@@ -17,5 +17,11 @@ include(kernel/kernel.pri)
include(drivers/drivers.pri)
include(models/models.pri)
-symbian:TARGET.UID3=0x2001E61D
+symbian: {
+ TARGET.UID3=0x2001E61D
+
+ # Workaroud for problems with paging this dll
+ MMP_RULES -= PAGED
+ MMP_RULES *= UNPAGED
+}