Changeset 50218 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Oct 28, 2009, 9:14:38 AM (16 years ago)
Author:
[email protected]
Message:

Use JSVALUE64 on 64-bit Windows

Patch by Jan-Arve Sæther <[email protected]> on 2009-10-28
Reviewed by Tor Arne Vestbø.

  • wtf/Platform.h: Make sure WTF_USE_JSVALUE64 is defined
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r50211 r50218  
     12009-10-28  Jan-Arve Sæther <[email protected]>
     2
     3        Reviewed by Tor Arne Vestbø.
     4
     5        Build-fix for 64-bit Windows
     6
     7        * wtf/Platform.h: Make sure to use WTF_USE_JSVALUE64
     8
    192009-10-28  Gavin Barraclough  <[email protected]>
    210
  • trunk/JavaScriptCore/wtf/Platform.h

    r50052 r50218  
    704704
    705705#if !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32) && !defined(WTF_USE_JSVALUE32_64)
    706 #if PLATFORM(X86_64) && (PLATFORM(DARWIN) || PLATFORM(LINUX))
     706#if PLATFORM(X86_64) && (PLATFORM(DARWIN) || PLATFORM(LINUX) || PLATFORM(WIN_OS))
    707707#define WTF_USE_JSVALUE64 1
    708708#elif PLATFORM(ARM) || PLATFORM(PPC64)
Note: See TracChangeset for help on using the changeset viewer.