Ignore:
Timestamp:
Jun 17, 2010, 10:46:41 AM (15 years ago)
Author:
[email protected]
Message:

2010-06-17 Shu Chang <[email protected]>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix the link error on symbian with ENABLE_JIT=0.

  1. Add "#if ENABLE(JIT)" in the header file;
  2. Put feature enable/disable logic to a common.pri so that both JavaScriptCore.pri and WebCore.pri can share.

https://bugs.webkit.org/show_bug.cgi?id=40780

2010-06-17 Shu Chang <[email protected]>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix the link error on symbian with ENABLE_JIT=0.

  1. Add "#if ENABLE(JIT)" in the header file;
  2. Put feature enable/disable logic to a common.pri so that both JavaScriptCore.pri and WebCore.pri can share.

https://bugs.webkit.org/show_bug.cgi?id=40780

  • common.pri: Added.

2010-06-17 Shu Chang <[email protected]>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix the link error on symbian with ENABLE_JIT=0.

  1. Add "#if ENABLE(JIT)" in the header file;
  2. Put feature enable/disable logic to a common.pri so that both JavaScriptCore.pri and WebCore.pri can share.

https://bugs.webkit.org/show_bug.cgi?id=40780

  • WebCore.pri:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/ExecutableAllocator.h

    r58167 r61338  
    2727#define ExecutableAllocator_h
    2828
     29#if ENABLE(JIT)
     30
    2931#include <stddef.h> // for ptrdiff_t
    3032#include <limits>
     
    319321#endif // ENABLE(ASSEMBLER)
    320322
     323#endif // ENABLE(JIT)
     324
    321325#endif // !defined(ExecutableAllocator)
Note: See TracChangeset for help on using the changeset viewer.