Title: [240733] trunk/Source/WebKit
Revision
240733
Author
[email protected]
Date
2019-01-30 15:11:10 -0800 (Wed, 30 Jan 2019)

Log Message

[macOS] Sandbox fails to compile on 10.12
https://bugs.webkit.org/show_bug.cgi?id=194035
<rdar://problem/47651260>

Reviewed by Brent Fulgham.

This was caused by the commit <https://trac.webkit.org/changeset/239994>, which is only valid for
10.14 and later.

* PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in:
* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (240732 => 240733)


--- trunk/Source/WebKit/ChangeLog	2019-01-30 22:56:46 UTC (rev 240732)
+++ trunk/Source/WebKit/ChangeLog	2019-01-30 23:11:10 UTC (rev 240733)
@@ -1,3 +1,17 @@
+2019-01-30  Per Arne Vollan  <[email protected]>
+
+        [macOS] Sandbox fails to compile on 10.12
+        https://bugs.webkit.org/show_bug.cgi?id=194035
+        <rdar://problem/47651260>
+
+        Reviewed by Brent Fulgham.
+
+        This was caused by the commit <https://trac.webkit.org/changeset/239994>, which is only valid for
+        10.14 and later.
+
+        * PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in:
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2019-01-29  Conrad Shultz  <[email protected]>
 
         Ensure image picker sourceType is set before cameraDevice

Modified: trunk/Source/WebKit/PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in (240732 => 240733)


--- trunk/Source/WebKit/PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in	2019-01-30 22:56:46 UTC (rev 240732)
+++ trunk/Source/WebKit/PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in	2019-01-30 23:11:10 UTC (rev 240733)
@@ -160,8 +160,10 @@
 )
 #endif
 
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400
 ;; <rdar://problem/47268166>
 (allow mach-lookup (xpc-service-name "com.apple.MTLCompilerService"))
+#endif
 
 ;; Utility functions
 (define (home-literal home-relative-literal)

Modified: trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (240732 => 240733)


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2019-01-30 22:56:46 UTC (rev 240732)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2019-01-30 23:11:10 UTC (rev 240733)
@@ -609,8 +609,10 @@
 #endif
 )
 
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400
 ;; <rdar://problem/47268166>
 (allow mach-lookup (xpc-service-name "com.apple.MTLCompilerService"))
+#endif
 
 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400
 (deny mach-lookup (with no-log)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to