Title: [239538] trunk/Source/WTF
Revision
239538
Author
[email protected]
Date
2018-12-21 23:53:26 -0800 (Fri, 21 Dec 2018)

Log Message

Fixed building for macOS 10.13 using the macOS 10.14 SDK.

* wtf/Platform.h: Changed HAVE_AUTHORIZATION_STATUS_FOR_MEDIA_TYPE to depend on the
  deployment target, not the SDK.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (239537 => 239538)


--- trunk/Source/WTF/ChangeLog	2018-12-22 06:41:03 UTC (rev 239537)
+++ trunk/Source/WTF/ChangeLog	2018-12-22 07:53:26 UTC (rev 239538)
@@ -1,3 +1,10 @@
+2018-12-21  Dan Bernstein  <[email protected]>
+
+        Fixed building for macOS 10.13 using the macOS 10.14 SDK.
+
+        * wtf/Platform.h: Changed HAVE_AUTHORIZATION_STATUS_FOR_MEDIA_TYPE to depend on the
+          deployment target, not the SDK.
+
 2018-12-20  Yusuke Suzuki  <[email protected]>
 
         [JSC] Implement "well-formed JSON.stringify" proposal

Modified: trunk/Source/WTF/wtf/Platform.h (239537 => 239538)


--- trunk/Source/WTF/wtf/Platform.h	2018-12-22 06:41:03 UTC (rev 239537)
+++ trunk/Source/WTF/wtf/Platform.h	2018-12-22 07:53:26 UTC (rev 239538)
@@ -1467,6 +1467,6 @@
 #define ENABLE_FULL_KEYBOARD_ACCESS 1
 #endif
 
-#if PLATFORM(IOS_FAMILY) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MAX_ALLOWED >= 101400)
+#if PLATFORM(IOS_FAMILY) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400)
 #define HAVE_AUTHORIZATION_STATUS_FOR_MEDIA_TYPE 1
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to