Title: [191347] trunk/Source/WTF
Revision
191347
Author
[email protected]
Date
2015-10-20 11:00:34 -0700 (Tue, 20 Oct 2015)

Log Message

Try to fix the build by disabling MAC_GESTURE_EVENTS on 10.9 and 10.10

* wtf/FeatureDefines.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (191346 => 191347)


--- trunk/Source/WTF/ChangeLog	2015-10-20 17:56:58 UTC (rev 191346)
+++ trunk/Source/WTF/ChangeLog	2015-10-20 18:00:34 UTC (rev 191347)
@@ -1,3 +1,9 @@
+2015-10-20  Tim Horton  <[email protected]>
+
+        Try to fix the build by disabling MAC_GESTURE_EVENTS on 10.9 and 10.10
+
+        * wtf/FeatureDefines.h:
+
 2015-10-20  Yoav Weiss  <[email protected]>
 
         Rename the PICTURE_SIZES flag to CURRENTSRC

Modified: trunk/Source/WTF/wtf/FeatureDefines.h (191346 => 191347)


--- trunk/Source/WTF/wtf/FeatureDefines.h	2015-10-20 17:56:58 UTC (rev 191346)
+++ trunk/Source/WTF/wtf/FeatureDefines.h	2015-10-20 18:00:34 UTC (rev 191347)
@@ -260,9 +260,11 @@
 #define ENABLE_SHADOW_DOM 1
 #endif
 
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
 #if !defined(ENABLE_MAC_GESTURE_EVENTS) && USE(APPLE_INTERNAL_SDK)
 #define ENABLE_MAC_GESTURE_EVENTS 1
 #endif
+#endif
 
 #endif /* PLATFORM(MAC) */
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to