Title: [279407] trunk/Source/WTF
Revision
279407
Author
[email protected]
Date
2021-06-30 03:19:03 -0700 (Wed, 30 Jun 2021)

Log Message

Fix the build.

* wtf/PlatformHave.h:
This is not available on the simulator; disable it.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (279406 => 279407)


--- trunk/Source/WTF/ChangeLog	2021-06-30 10:18:26 UTC (rev 279406)
+++ trunk/Source/WTF/ChangeLog	2021-06-30 10:19:03 UTC (rev 279407)
@@ -1,3 +1,10 @@
+2021-06-30  Tim Horton  <[email protected]>
+
+        Fix the build.
+
+        * wtf/PlatformHave.h:
+        This is not available on the simulator; disable it.
+
 2021-06-30  Youenn Fablet  <[email protected]>
 
         [Cocoa] Migrate WebRTC UDP socket handling to NW API

Modified: trunk/Source/WTF/wtf/PlatformHave.h (279406 => 279407)


--- trunk/Source/WTF/wtf/PlatformHave.h	2021-06-30 10:18:26 UTC (rev 279406)
+++ trunk/Source/WTF/wtf/PlatformHave.h	2021-06-30 10:19:03 UTC (rev 279407)
@@ -1011,7 +1011,7 @@
 #endif
 
 #if defined __has_include && __has_include(<AssetViewer/ASVInlinePreview.h>)
-#if (PLATFORM(IOS) || PLATFORM(MACCATALYST)) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000
+#if (PLATFORM(IOS) || PLATFORM(MACCATALYST)) && !PLATFORM(IOS_SIMULATOR) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000
 #define HAVE_ARKIT_INLINE_PREVIEW_IOS 1
 #endif
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to