Title: [270600] trunk/Source/WTF
- Revision
- 270600
- Author
- [email protected]
- Date
- 2020-12-09 13:42:33 -0800 (Wed, 09 Dec 2020)
Log Message
Turn on HAVE(SYSTEM_FEATURE_FLAGS) on WatchOS and TvOS
https://bugs.webkit.org/show_bug.cgi?id=219703
Reviewed by Darin Adler.
Turn on HAVE(SYSTEM_FEATURE_FLAGS) on WatchOS and TvOS. This should fix the build
after r270542.
* wtf/PlatformHave.h:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (270599 => 270600)
--- trunk/Source/WTF/ChangeLog 2020-12-09 21:38:56 UTC (rev 270599)
+++ trunk/Source/WTF/ChangeLog 2020-12-09 21:42:33 UTC (rev 270600)
@@ -1,3 +1,15 @@
+2020-12-09 Chris Dumez <[email protected]>
+
+ Turn on HAVE(SYSTEM_FEATURE_FLAGS) on WatchOS and TvOS
+ https://bugs.webkit.org/show_bug.cgi?id=219703
+
+ Reviewed by Darin Adler.
+
+ Turn on HAVE(SYSTEM_FEATURE_FLAGS) on WatchOS and TvOS. This should fix the build
+ after r270542.
+
+ * wtf/PlatformHave.h:
+
2020-12-08 Devin Rousso <[email protected]>
[macCatalyst] Enable context menus for WKWebView
Modified: trunk/Source/WTF/wtf/PlatformHave.h (270599 => 270600)
--- trunk/Source/WTF/wtf/PlatformHave.h 2020-12-09 21:38:56 UTC (rev 270599)
+++ trunk/Source/WTF/wtf/PlatformHave.h 2020-12-09 21:42:33 UTC (rev 270600)
@@ -599,7 +599,11 @@
#define HAVE_UICONTEXTMENU_LOCATION 1
#endif
-#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000) || (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 140000) || PLATFORM(WIN)
+#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000) \
+ || (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 140000) \
+ || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 70000) \
+ || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED >= 140000) \
+ || PLATFORM(WIN)
#define HAVE_SYSTEM_FEATURE_FLAGS 1
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes