From: eric@webkit.org Date: Fri, 13 Nov 2009 23:21:33 +0000 (+0000) Subject: 2009-11-13 Norbert Leser X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=48d12a421b8673937f90d285e81c4eb9f3f6f778 2009-11-13 Norbert Leser Reviewed by Eric Seidel. Added macros for USERINCLUDE paths within symbian blocks to guarantee inclusion of respective header files from local path first (to avoid clashes with same names of header files in system include path). * JavaScriptCore.pri: 2009-11-13 Norbert Leser Reviewed by Eric Seidel. Added macros for USERINCLUDE paths within symbian blocks to guarantee inclusion of respective header files from local path first (to avoid clashes with same names of header files in system include path). * WebCore.pro: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@50970 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog index 3f39e6b90638..896a13f8e95b 100644 --- a/JavaScriptCore/ChangeLog +++ b/JavaScriptCore/ChangeLog @@ -1,3 +1,13 @@ +2009-11-13 Norbert Leser + + Reviewed by Eric Seidel. + + Added macros for USERINCLUDE paths within symbian blocks + to guarantee inclusion of respective header files from local path + first (to avoid clashes with same names of header files in system include path). + + * JavaScriptCore.pri: + 2009-11-13 Oliver Hunt Reviewed by Geoff Garen. diff --git a/JavaScriptCore/JavaScriptCore.pri b/JavaScriptCore/JavaScriptCore.pri index 295ee2ca6c51..ce0a89ad8fc6 100644 --- a/JavaScriptCore/JavaScriptCore.pri +++ b/JavaScriptCore/JavaScriptCore.pri @@ -9,6 +9,11 @@ CONFIG(debug, debug|release) { OBJECTS_DIR = obj/release } +symbian: { + # Need to guarantee this comes before system includes of /epoc32/include + MMP_RULES += "USERINCLUDE ../JavaScriptCore/profiler" +} + INCLUDEPATH = \ $$PWD \ $$PWD/.. \ diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog index 227f6fb0eacb..6d5d2051a07f 100644 --- a/WebCore/ChangeLog +++ b/WebCore/ChangeLog @@ -1,3 +1,13 @@ +2009-11-13 Norbert Leser + + Reviewed by Eric Seidel. + + Added macros for USERINCLUDE paths within symbian blocks + to guarantee inclusion of respective header files from local path + first (to avoid clashes with same names of header files in system include path). + + * WebCore.pro: + 2009-11-13 Hironori Bono Reviewed by Oliver Hunt. diff --git a/WebCore/WebCore.pro b/WebCore/WebCore.pro index 415b22d96b26..f889ede62ef1 100644 --- a/WebCore/WebCore.pro +++ b/WebCore/WebCore.pro @@ -12,6 +12,9 @@ symbian: { DEPLOYMENT += webkitlibs TARGET.UID3 = 0x200267C2 + # Need to guarantee that these come before system includes of /epoc32/include + MMP_RULES += "USERINCLUDE rendering" + MMP_RULES += "USERINCLUDE platform/text" # RO text (code) section in qtwebkit.dll exceeds allocated space for gcce udeb target. # Move RW-section base address to start from 0xE00000 instead of the toolchain default 0x400000. MMP_RULES += "LINKEROPTION armcc --rw-base 0xE00000"