Changeset 74978 in webkit


Ignore:
Timestamp:
Jan 4, 2011 11:16:38 AM (13 years ago)
Author:
Laszlo Gombos
Message:

2011-01-04 Laszlo Gombos <Laszlo Gombos>

Reviewed by Ariya Hidayat.

[Qt][Symbian] Make sure that WebKit headers are included before platform headers on Symbian
https://bugs.webkit.org/show_bug.cgi?id=31273

On Symbian PREPEND_INCLUDEPATH is the best way to make sure that WebKit headers
are included before platform headers. On all other platforms continue to use
INCLUDEPATH (as before). This is a continuation of r65877.

No new tests as there is no new functionality.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r74977 r74978  
     12011-01-04  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Ariya Hidayat.
     4
     5        [Qt][Symbian] Make sure that WebKit headers are included before platform headers on Symbian
     6        https://bugs.webkit.org/show_bug.cgi?id=31273
     7
     8        On Symbian PREPEND_INCLUDEPATH is the best way to make sure that WebKit headers
     9        are included before platform headers. On all other platforms continue to use
     10        INCLUDEPATH (as before). This is a continuation of r65877.
     11
     12        No new tests as there is no new functionality.
     13
     14        * JavaScriptCore.pri:
     15
    1162011-01-04  Darin Adler  <darin@apple.com>
    217
  • trunk/Source/JavaScriptCore/JavaScriptCore.pri

    r74861 r74978  
    2121CONFIG(standalone_package): DEFINES *= NDEBUG
    2222
    23 symbian: {
    24     # Need to guarantee this comes before system includes of /epoc32/include
    25     MMP_RULES += "USERINCLUDE ../JavaScriptCore/profiler"
    26     LIBS += -lhal
    27     # For hal.h
    28     INCLUDEPATH *= $$MW_LAYER_SYSTEMINCLUDE
    29 }
    30 
    31 INCLUDEPATH = \
     23JAVASCRIPTCORE_INCLUDEPATH = \
    3224    $$PWD \
    3325    $$PWD/.. \
     
    5042    $$PWD/API \
    5143    $$PWD/ForwardingHeaders \
    52     $$JSC_GENERATED_SOURCES_DIR \
    53     $$INCLUDEPATH
     44    $$JSC_GENERATED_SOURCES_DIR
     45
     46symbian {
     47    PREPEND_INCLUDEPATH = $$JAVASCRIPTCORE_INCLUDEPATH $$PREPEND_INCLUDEPATH
     48} else {
     49    INCLUDEPATH = $$JAVASCRIPTCORE_INCLUDEPATH $$INCLUDEPATH
     50}
     51
     52symbian: {
     53    LIBS += -lhal
     54    # For hal.h
     55    INCLUDEPATH *= $$MW_LAYER_SYSTEMINCLUDE
     56}
    5457
    5558win32-*: DEFINES += _HAS_TR1=0
Note: See TracChangeset for help on using the changeset viewer.