Title: [217797] trunk/Source/WebCore
Revision
217797
Author
[email protected]
Date
2017-06-05 15:12:57 -0700 (Mon, 05 Jun 2017)

Log Message

Tried to fix the build when targrting macOS 10.12 using the macOS 10.13 developer beta SDK.

* platform/spi/mac/AVFoundationSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (217796 => 217797)


--- trunk/Source/WebCore/ChangeLog	2017-06-05 21:54:06 UTC (rev 217796)
+++ trunk/Source/WebCore/ChangeLog	2017-06-05 22:12:57 UTC (rev 217797)
@@ -2,6 +2,12 @@
 
         Tried to fix the build when targrting macOS 10.12 using the macOS 10.13 developer beta SDK.
 
+        * platform/spi/mac/AVFoundationSPI.h:
+
+2017-06-05  Dan Bernstein  <[email protected]>
+
+        Tried to fix the build when targrting macOS 10.12 using the macOS 10.13 developer beta SDK.
+
         * platform/spi/cocoa/IOSurfaceSPI.h:
 
 2017-06-05  Konstantin Tokarev  <[email protected]>

Modified: trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h (217796 => 217797)


--- trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h	2017-06-05 21:54:06 UTC (rev 217796)
+++ trunk/Source/WebCore/platform/spi/mac/AVFoundationSPI.h	2017-06-05 22:12:57 UTC (rev 217797)
@@ -193,7 +193,7 @@
 
 #endif // __has_include(<AVFoundation/AVSampleBufferRenderSynchronizer.h>)
 
-#if ((PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 110000)) && __has_include(<AVFoundation/AVQueuedSampleBufferRendering.h>)
+#if ((PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED < 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 110000)) && __has_include(<AVFoundation/AVQueuedSampleBufferRendering.h>)
 #import <AVFoundation/AVQueuedSampleBufferRendering.h>
 #elif __has_include(<AVFoundation/AVSampleBufferDisplayLayer.h>)
 #import <AVFoundation/AVSampleBufferDisplayLayer.h>
@@ -219,7 +219,7 @@
 
 #endif // __has_include(<AVFoundation/AVSampleBufferDisplayLayer.h>)
 
-#if ((PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED < 110000)) && __has_include(<AVFoundation/AVQueuedSampleBufferRendering.h>)
+#if ((PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED < 101300) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 110000)) && __has_include(<AVFoundation/AVQueuedSampleBufferRendering.h>)
 // Nothing to do, AVfoundation/AVQueuedSampleBufferRendering.h was imported above.
 #elif __has_include(<AVFoundation/AVSampleBufferAudioRenderer.h>)
 #import <AVFoundation/AVSampleBufferAudioRenderer.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to