Title: [106092] trunk/Source/_javascript_Core
Revision
106092
Author
[email protected]
Date
2012-01-26 23:10:37 -0800 (Thu, 26 Jan 2012)

Log Message

[wx] Unreviewed. Build fix, wx uses the Mac ICU headers so we must match Mac behavior.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (106091 => 106092)


--- trunk/Source/_javascript_Core/ChangeLog	2012-01-27 07:05:45 UTC (rev 106091)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-01-27 07:10:37 UTC (rev 106092)
@@ -1,3 +1,10 @@
+2012-01-26  Kevin Ollivier  <[email protected]>
+
+        [wx] Unreviewed. Build fix, wx uses the Mac ICU headers so we must match Mac behavior.
+        
+        * runtime/DatePrototype.cpp:
+        ():
+
 2012-01-26  Mark Hahnenberg  <[email protected]>
 
         Merge AllocationSpace into MarkedSpace

Modified: trunk/Source/_javascript_Core/runtime/DatePrototype.cpp (106091 => 106092)


--- trunk/Source/_javascript_Core/runtime/DatePrototype.cpp	2012-01-27 07:05:45 UTC (rev 106091)
+++ trunk/Source/_javascript_Core/runtime/DatePrototype.cpp	2012-01-27 07:10:37 UTC (rev 106092)
@@ -60,7 +60,7 @@
 #include <sys/timeb.h>
 #endif
 
-#if PLATFORM(MAC) || PLATFORM(IOS)
+#if PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(WX)
 #include <CoreFoundation/CoreFoundation.h>
 #elif USE(ICU_UNICODE)
 #include <unicode/udat.h>
@@ -130,7 +130,7 @@
 
 enum LocaleDateTimeFormat { LocaleDateAndTime, LocaleDate, LocaleTime };
  
-#if PLATFORM(MAC) || PLATFORM(IOS)
+#if PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(WX)
 
 // FIXME: Since this is superior to the strftime-based version, why limit this to PLATFORM(MAC)?
 // Instead we should consider using this whenever USE(CF) is true.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to