Changeset 105943 in webkit


Ignore:
Timestamp:
Jan 25, 2012 4:48:04 PM (12 years ago)
Author:
mrowe@apple.com
Message:

Attempted Mac build fix after r105939.

  • runtime/DatePrototype.cpp: Don't #include unicode/udat.h on Mac or iOS.

It isn't used on these platforms and isn't available in the ICU headers
for Mac.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r105942 r105943  
     12012-01-25  Mark Rowe  <mrowe@apple.com>
     2
     3        Attempted Mac build fix after r105939.
     4
     5        * runtime/DatePrototype.cpp: Don't #include unicode/udat.h on Mac or iOS.
     6        It isn't used on these platforms and isn't available in the ICU headers
     7        for Mac.
     8
    192012-01-25  Mark Rowe  <mrowe@apple.com>
    210
  • trunk/Source/JavaScriptCore/runtime/DatePrototype.cpp

    r105939 r105943  
    6363#if PLATFORM(MAC) || PLATFORM(IOS)
    6464#include <CoreFoundation/CoreFoundation.h>
    65 #endif
    66 
    67 #if USE(ICU_UNICODE)
     65#elif USE(ICU_UNICODE)
    6866#include <unicode/udat.h>
    6967#endif
Note: See TracChangeset for help on using the changeset viewer.