Changeset 44511 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 8, 2009, 4:48:49 PM (16 years ago)
Author:
[email protected]
Message:

Attempt to fix the Tiger build.

  • wtf/Platform.h: Only test the value of the macro once we know it is defined.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r44510 r44511  
     12009-06-08  Mark Rowe  <[email protected]>
     2
     3        Attempt to fix the Tiger build.
     4
     5        * wtf/Platform.h: Only test the value of the macro once we know it is defined.
     6
    172009-06-08  Dimitri Glazkov  <[email protected]>
    28
  • trunk/JavaScriptCore/wtf/Platform.h

    r44504 r44511  
    152152
    153153/* PLATFORM(IPHONE) */
    154 #if TARGET_OS_EMBEDDED || (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE)
     154#if (defined(TARGET_OS_EMBEDDED) && TARGET_OS_EMBEDDED) || (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE)
    155155#define WTF_PLATFORM_IPHONE 1
    156156#endif
Note: See TracChangeset for help on using the changeset viewer.