Title: [122412] trunk/Source/WebCore
Revision
122412
Author
[email protected]
Date
2012-07-11 20:23:38 -0700 (Wed, 11 Jul 2012)

Log Message

Attempt to fix the Chromium Mac build after r122400.

* platform/text/cf/HyphenationCF.cpp: Ensure that Chromium only compiles the body of this file if
building for a new enough version of OS X.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (122411 => 122412)


--- trunk/Source/WebCore/ChangeLog	2012-07-12 03:22:03 UTC (rev 122411)
+++ trunk/Source/WebCore/ChangeLog	2012-07-12 03:23:38 UTC (rev 122412)
@@ -1,3 +1,10 @@
+2012-07-11  Mark Rowe  <[email protected]>
+
+        Attempt to fix the Chromium Mac build after r122400.
+
+        * platform/text/cf/HyphenationCF.cpp: Ensure that Chromium only compiles the body of this file if
+        building for a new enough version of OS X.
+
 2012-07-11  Kent Tamura  <[email protected]>
 
         [Mac] Sort project.pbxproj

Modified: trunk/Source/WebCore/platform/text/cf/HyphenationCF.cpp (122411 => 122412)


--- trunk/Source/WebCore/platform/text/cf/HyphenationCF.cpp	2012-07-12 03:22:03 UTC (rev 122411)
+++ trunk/Source/WebCore/platform/text/cf/HyphenationCF.cpp	2012-07-12 03:23:38 UTC (rev 122412)
@@ -26,7 +26,7 @@
 #include "config.h"
 #include "Hyphenation.h"
 
-#if !PLATFORM(MAC) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
+#if (!PLATFORM(MAC) && !PLATFORM(CHROMIUM)) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
 
 #include "AtomicStringKeyedMRUCache.h"
 #include "TextBreakIteratorInternalICU.h"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to