Ignore:
Timestamp:
Oct 14, 2007, 4:55:02 AM (18 years ago)
Author:
bdash
Message:

2007-10-14 Kevin Ollivier <[email protected]>

Reviewed by Adam.

Add support for MSVC7, and fix cases where PLATFORM(WIN) should
be PLATFORM(WIN_OS) for other ports building on Windows.

  • dom/XMLTokenizer.cpp:
  • page/FrameTree.cpp:
  • platform/StaticConstructors.h:
  • platform/String.cpp:

2007-10-5 Kevin Ollivier <[email protected]>

Reviewed by Adam.


Add support for MSVC7, and fix cases where PLATFORM(WIN) should
be PLATFORM(WIN_OS) for other ports building on Windows.


  • kjs/DateMath.cpp: (KJS::getDSTOffsetSimple):
  • kjs/JSImmediate.h:
  • wtf/Assertions.cpp:
  • wtf/Assertions.h:
  • wtf/Platform.h:
  • wtf/StringExtras.h: (snprintf): (vsnprintf):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/DateMath.cpp

    r25754 r26589  
    429429    localTM = *localtime(&localTime);
    430430#elif PLATFORM(WIN_OS)
     431    #if COMPILER(MSVC7)
     432    localTM = *localtime(&localTime);
     433    #else
    431434    localtime_s(&localTM, &localTime);
     435    #endif
    432436#else
    433437    localtime_r(&localTime, &localTM);
Note: See TracChangeset for help on using the changeset viewer.