diff options
author | Kent Hansen <kent.hansen@nokia.com> | 2010-09-02 12:33:26 (GMT) |
---|---|---|
committer | Kent Hansen <kent.hansen@nokia.com> | 2010-09-02 13:30:38 (GMT) |
commit | 03b7a3cffba609df56b4ccadacae6b6f985e96e9 (patch) | |
tree | 37e7008140b64007fc00ce826fbadd0866700675 /src/script | |
parent | 2bb571fe49d05b06b13aedc4f7fb71cbb1c949be (diff) | |
download | Qt-03b7a3cffba609df56b4ccadacae6b6f985e96e9.zip Qt-03b7a3cffba609df56b4ccadacae6b6f985e96e9.tar.gz Qt-03b7a3cffba609df56b4ccadacae6b6f985e96e9.tar.bz2 |
Reduce memory consumption of QtScript/JSC on Symbian
Backport of Jay's patch from https://bugs.webkit.org/show_bug.cgi?id=34349
with minor modifications.
Even though the original patch was rejected upstream and has been
superseded by the patches for https://bugs.webkit.org/show_bug.cgi?id=43185,
those patches are more involved (affecting all platforms), hence
difficult/risky to backport.
Task-number: QTBUG-13361
Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/script.pro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/script/script.pro b/src/script/script.pro index 55217e0..4ee86d7 100644 --- a/src/script/script.pro +++ b/src/script/script.pro @@ -79,7 +79,10 @@ INCLUDEPATH += $$PWD include(script.pri) -symbian:TARGET.UID3=0x2001B2E1 +symbian { + TARGET.UID3=0x2001B2E1 + LIBS += -lhal +} # WebKit doesn't compile in C++0x mode *-g++*:QMAKE_CXXFLAGS -= -std=c++0x -std=gnu++0x |