Title: [231731] trunk/Source/WebCore/PAL
Revision
231731
Author
[email protected]
Date
2018-05-11 21:19:10 -0700 (Fri, 11 May 2018)

Log Message

Follow-up build fix to r231721.

* pal/cf/CoreMediaSoftLink.cpp:
* pal/cf/CoreMediaSoftLink.h:
  Unify the conditions between the header and the implementation files, and have watchOS and
  tvOS keyed off iOS.

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (231730 => 231731)


--- trunk/Source/WebCore/PAL/ChangeLog	2018-05-12 04:11:16 UTC (rev 231730)
+++ trunk/Source/WebCore/PAL/ChangeLog	2018-05-12 04:19:10 UTC (rev 231731)
@@ -1,3 +1,12 @@
+2018-05-11  Dan Bernstein  <[email protected]>
+
+        Follow-up build fix to r231721.
+
+        * pal/cf/CoreMediaSoftLink.cpp:
+        * pal/cf/CoreMediaSoftLink.h:
+          Unify the conditions between the header and the implementation files, and have watchOS and
+          tvOS keyed off iOS.
+
 2018-05-11  Jer Noble  <[email protected]>
 
         Add CF_NOESCAPE decorators for tvOS and watchOS

Modified: trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.cpp (231730 => 231731)


--- trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.cpp	2018-05-12 04:11:16 UTC (rev 231730)
+++ trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.cpp	2018-05-12 04:19:10 UTC (rev 231731)
@@ -35,7 +35,7 @@
 #include <CoreVideo/CoreVideo.h>
 #endif
 
-#if (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED <= 120000) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED <= 101400)
+#if (PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130000) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED < 101500)
 #define CMSAMPLEBUFFERCALL_NOESCAPE
 #else
 #define CMSAMPLEBUFFERCALL_NOESCAPE CF_NOESCAPE

Modified: trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h (231730 => 231731)


--- trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h	2018-05-12 04:11:16 UTC (rev 231730)
+++ trunk/Source/WebCore/PAL/pal/cf/CoreMediaSoftLink.h	2018-05-12 04:19:10 UTC (rev 231731)
@@ -37,7 +37,7 @@
 #define SOFTLINK_AVKIT_FRAMEWORK() SOFT_LINK_FRAMEWORK_OPTIONAL(AVKit)
 #endif
 
-#if (PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130000) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED < 101500) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MAX_ALLOWED < 60000) || (PLATFORM(TVOS) && __TV_OS_VERSION_MAX_ALLOWED < 130000)
+#if (PLATFORM(IOS) && __IPHONE_OS_VERSION_MAX_ALLOWED < 130000) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED < 101500)
 #define CMSAMPLEBUFFERCALL_NOESCAPE
 #else
 #define CMSAMPLEBUFFERCALL_NOESCAPE CF_NOESCAPE
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to