Ignore:
Timestamp:
May 9, 2010, 2:11:50 PM (15 years ago)
Author:
[email protected]
Message:

2010-05-09 Laszlo Gombos <Laszlo Gombos>

Reviewed by Eric Seidel.

[Qt] Remove YARR configuration rules from Qt make system
https://bugs.webkit.org/show_bug.cgi?id=38819

Setting YARR based on JIT seeting is now in Platform.h
for all ports. This patch essentially reverses r49238.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/JavaScriptCore.pri

    r58309 r59060  
    5252DEFINES += BUILDING_QT__ BUILDING_JavaScriptCore BUILDING_WTF
    5353
    54 contains(JAVASCRIPTCORE_JIT,yes) {
    55     DEFINES+=ENABLE_JIT=1
    56     DEFINES+=ENABLE_YARR_JIT=1
    57     DEFINES+=ENABLE_YARR=1
    58 }
    59 contains(JAVASCRIPTCORE_JIT,no) {
    60     DEFINES+=ENABLE_JIT=0
    61     DEFINES+=ENABLE_YARR_JIT=0
    62     DEFINES+=ENABLE_YARR=0
    63 }
     54contains(JAVASCRIPTCORE_JIT,yes): DEFINES+=ENABLE_JIT=1
     55contains(JAVASCRIPTCORE_JIT,no): DEFINES+=ENABLE_JIT=0
    6456
    6557wince* {
Note: See TracChangeset for help on using the changeset viewer.