Title: [161882] trunk/Source
Revision
161882
Author
[email protected]
Date
2014-01-13 09:17:07 -0800 (Mon, 13 Jan 2014)

Log Message

Enable SUBPIXEL_LAYOUT on Mac
<https://webkit.org/b/126283>

Reviewed by Simon Fraser.

Source/_javascript_Core:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

* Configurations/FeatureDefines.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (161881 => 161882)


--- trunk/Source/_javascript_Core/ChangeLog	2014-01-13 16:47:54 UTC (rev 161881)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-01-13 17:17:07 UTC (rev 161882)
@@ -1,3 +1,12 @@
+2014-01-13  Zalan Bujtas  <[email protected]>
+
+        Enable SUBPIXEL_LAYOUT on Mac
+        <https://webkit.org/b/126283>
+
+        Reviewed by Simon Fraser.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2014-01-13  Zan Dobersek  <[email protected]>
 
         Unreviewed. Changes in r161686 are exposing a bug in GCC where the global .cfi_startproc directive

Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (161881 => 161882)


--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2014-01-13 16:47:54 UTC (rev 161881)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2014-01-13 17:17:07 UTC (rev 161882)
@@ -165,7 +165,7 @@
 ENABLE_SPEECH_SYNTHESIS = $(ENABLE_SPEECH_SYNTHESIS_$(PLATFORM_NAME));
 ENABLE_SPEECH_SYNTHESIS = ENABLE_SPEECH_SYNTHESIS;
 ENABLE_SQL_DATABASE = ENABLE_SQL_DATABASE;
-ENABLE_SUBPIXEL_LAYOUT = ;
+ENABLE_SUBPIXEL_LAYOUT = ENABLE_SUBPIXEL_LAYOUT;
 ENABLE_SUBTLE_CRYPTO = $(ENABLE_SUBTLE_CRYPTO_$(PLATFORM_NAME));
 ENABLE_SUBTLE_CRYPTO_macosx = $(ENABLE_SUBTLE_CRYPTO_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
 ENABLE_SUBTLE_CRYPTO_macosx_1080 = ;

Modified: trunk/Source/WebCore/ChangeLog (161881 => 161882)


--- trunk/Source/WebCore/ChangeLog	2014-01-13 16:47:54 UTC (rev 161881)
+++ trunk/Source/WebCore/ChangeLog	2014-01-13 17:17:07 UTC (rev 161882)
@@ -1,3 +1,12 @@
+2014-01-13  Zalan Bujtas  <[email protected]>
+
+        Enable SUBPIXEL_LAYOUT on Mac
+        <https://webkit.org/b/126283>
+
+        Reviewed by Simon Fraser.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2014-01-13  Tibor Meszaros  <[email protected]>
 
         REGRESSION(r161715): Use of uninitialized value $ENV{"PLATFORM_NAME"}

Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (161881 => 161882)


--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2014-01-13 16:47:54 UTC (rev 161881)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2014-01-13 17:17:07 UTC (rev 161882)
@@ -165,7 +165,7 @@
 ENABLE_SPEECH_SYNTHESIS = $(ENABLE_SPEECH_SYNTHESIS_$(PLATFORM_NAME));
 ENABLE_SPEECH_SYNTHESIS = ENABLE_SPEECH_SYNTHESIS;
 ENABLE_SQL_DATABASE = ENABLE_SQL_DATABASE;
-ENABLE_SUBPIXEL_LAYOUT = ;
+ENABLE_SUBPIXEL_LAYOUT = ENABLE_SUBPIXEL_LAYOUT;
 ENABLE_SUBTLE_CRYPTO = $(ENABLE_SUBTLE_CRYPTO_$(PLATFORM_NAME));
 ENABLE_SUBTLE_CRYPTO_macosx = $(ENABLE_SUBTLE_CRYPTO_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
 ENABLE_SUBTLE_CRYPTO_macosx_1080 = ;

Modified: trunk/Source/WebKit/mac/ChangeLog (161881 => 161882)


--- trunk/Source/WebKit/mac/ChangeLog	2014-01-13 16:47:54 UTC (rev 161881)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-01-13 17:17:07 UTC (rev 161882)
@@ -1,3 +1,12 @@
+2014-01-13  Zalan Bujtas  <[email protected]>
+
+        Enable SUBPIXEL_LAYOUT on Mac
+        <https://webkit.org/b/126283>
+
+        Reviewed by Simon Fraser.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2014-01-12  Darin Adler  <[email protected]>
 
         Add deprecatedCharacters as a synonym for characters and convert most call sites

Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (161881 => 161882)


--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2014-01-13 16:47:54 UTC (rev 161881)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig	2014-01-13 17:17:07 UTC (rev 161882)
@@ -165,7 +165,7 @@
 ENABLE_SPEECH_SYNTHESIS = $(ENABLE_SPEECH_SYNTHESIS_$(PLATFORM_NAME));
 ENABLE_SPEECH_SYNTHESIS = ENABLE_SPEECH_SYNTHESIS;
 ENABLE_SQL_DATABASE = ENABLE_SQL_DATABASE;
-ENABLE_SUBPIXEL_LAYOUT = ;
+ENABLE_SUBPIXEL_LAYOUT = ENABLE_SUBPIXEL_LAYOUT;
 ENABLE_SUBTLE_CRYPTO = $(ENABLE_SUBTLE_CRYPTO_$(PLATFORM_NAME));
 ENABLE_SUBTLE_CRYPTO_macosx = $(ENABLE_SUBTLE_CRYPTO_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
 ENABLE_SUBTLE_CRYPTO_macosx_1080 = ;

Modified: trunk/Source/WebKit2/ChangeLog (161881 => 161882)


--- trunk/Source/WebKit2/ChangeLog	2014-01-13 16:47:54 UTC (rev 161881)
+++ trunk/Source/WebKit2/ChangeLog	2014-01-13 17:17:07 UTC (rev 161882)
@@ -1,3 +1,12 @@
+2014-01-13  Zalan Bujtas  <[email protected]>
+
+        Enable SUBPIXEL_LAYOUT on Mac
+        <https://webkit.org/b/126283>
+
+        Reviewed by Simon Fraser.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2014-01-12  Sergio Correia  <[email protected]>
 
         [EFL][WK2] Make API tests work again

Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (161881 => 161882)


--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2014-01-13 16:47:54 UTC (rev 161881)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig	2014-01-13 17:17:07 UTC (rev 161882)
@@ -165,7 +165,7 @@
 ENABLE_SPEECH_SYNTHESIS = $(ENABLE_SPEECH_SYNTHESIS_$(PLATFORM_NAME));
 ENABLE_SPEECH_SYNTHESIS = ENABLE_SPEECH_SYNTHESIS;
 ENABLE_SQL_DATABASE = ENABLE_SQL_DATABASE;
-ENABLE_SUBPIXEL_LAYOUT = ;
+ENABLE_SUBPIXEL_LAYOUT = ENABLE_SUBPIXEL_LAYOUT;
 ENABLE_SUBTLE_CRYPTO = $(ENABLE_SUBTLE_CRYPTO_$(PLATFORM_NAME));
 ENABLE_SUBTLE_CRYPTO_macosx = $(ENABLE_SUBTLE_CRYPTO_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
 ENABLE_SUBTLE_CRYPTO_macosx_1080 = ;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to