Title: [283396] trunk/Source/WebKit
Revision
283396
Author
[email protected]
Date
2021-10-01 13:35:17 -0700 (Fri, 01 Oct 2021)

Log Message

Remove special treatment for /private/var/db/dyld on older macOS
https://bugs.webkit.org/show_bug.cgi?id=231092
<rdar://problem/66580290>

Reviewed by Per Arne Vollan.

The dyld shared cache moved to /System/Library/dyld in Big Sur. We should remove access to the
old location from Big Sur (and beyond) since it isn't needed anymore.

* GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in:
* NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
* WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in:
* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (283395 => 283396)


--- trunk/Source/WebKit/ChangeLog	2021-10-01 20:32:43 UTC (rev 283395)
+++ trunk/Source/WebKit/ChangeLog	2021-10-01 20:35:17 UTC (rev 283396)
@@ -1,3 +1,19 @@
+2021-10-01  Brent Fulgham  <[email protected]>
+
+        Remove special treatment for /private/var/db/dyld on older macOS
+        https://bugs.webkit.org/show_bug.cgi?id=231092
+        <rdar://problem/66580290>
+
+        Reviewed by Per Arne Vollan.
+
+        The dyld shared cache moved to /System/Library/dyld in Big Sur. We should remove access to the
+        old location from Big Sur (and beyond) since it isn't needed anymore.
+
+        * GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in:
+        * NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
+        * WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in:
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-10-01  Kate Cheney  <[email protected]>
 
         GPU Process microphone attribution SPI adoption

Modified: trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in (283395 => 283396)


--- trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in	2021-10-01 20:32:43 UTC (rev 283395)
+++ trunk/Source/WebKit/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in	2021-10-01 20:35:17 UTC (rev 283396)
@@ -51,7 +51,9 @@
     (require-any (subpath "/Library/Filesystems/NetFSPlugins")
     (subpath "/Library/Apple/System")
     (subpath "/Library/Preferences/Logging")      ; Logging Rethink
+#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
     (subpath "/private/var/db/dyld")
+#endif
     (subpath "/private/var/db/timezone")
     (subpath "/usr/lib")
     (subpath "/usr/share"))))

Modified: trunk/Source/WebKit/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in (283395 => 283396)


--- trunk/Source/WebKit/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in	2021-10-01 20:32:43 UTC (rev 283395)
+++ trunk/Source/WebKit/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in	2021-10-01 20:35:17 UTC (rev 283396)
@@ -80,7 +80,9 @@
        (subpath "/Library/Apple/System")
        (subpath "/Library/Filesystems/NetFSPlugins")
        (subpath "/Library/Preferences/Logging")      ; Logging Rethink
+#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
        (subpath "/private/var/db/dyld")
+#endif
        (subpath "/private/var/db/timezone")
        (subpath "/usr/lib")
        (subpath "/usr/share"))

Modified: trunk/Source/WebKit/WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in (283395 => 283396)


--- trunk/Source/WebKit/WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in	2021-10-01 20:32:43 UTC (rev 283395)
+++ trunk/Source/WebKit/WebAuthnProcess/mac/com.apple.WebKit.WebAuthnProcess.sb.in	2021-10-01 20:35:17 UTC (rev 283396)
@@ -46,7 +46,9 @@
     (subpath "/Library/Apple/System")
     (subpath "/Library/Preferences/Logging")      ; Logging Rethink
     (subpath "/System")
+#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
     (subpath "/private/var/db/dyld")
+#endif
     (subpath "/private/var/db/timezone")
     (subpath "/usr/lib")
     (subpath "/usr/share"))))

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-10-01 20:32:43 UTC (rev 283395)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-10-01 20:35:17 UTC (rev 283396)
@@ -54,7 +54,9 @@
     (subpath "/Library/Apple/System")
     (subpath "/Library/Preferences/Logging")      ; Logging Rethink
     (subpath "/System")
+#if __MAC_OS_X_VERSION_MIN_REQUIRED < 110000
     (subpath "/private/var/db/dyld")
+#endif
     (subpath "/private/var/db/timezone")
     (subpath "/usr/lib")
     (subpath "/usr/share"))))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to