Title: [250763] trunk/Source/WTF
Revision
250763
Author
rn...@webkit.org
Date
2019-10-04 19:52:42 -0700 (Fri, 04 Oct 2019)

Log Message

Build fix for macOS Catalina.

* wtf/spi/darwin/SandboxSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (250762 => 250763)


--- trunk/Source/WTF/ChangeLog	2019-10-05 01:59:35 UTC (rev 250762)
+++ trunk/Source/WTF/ChangeLog	2019-10-05 02:52:42 UTC (rev 250763)
@@ -1,5 +1,11 @@
 2019-10-04  Ryosuke Niwa  <rn...@webkit.org>
 
+        Build fix for macOS Catalina.
+
+        * wtf/spi/darwin/SandboxSPI.h:
+
+2019-10-04  Ryosuke Niwa  <rn...@webkit.org>
+
         Make a ThreadSafeRefCounted object safe to ref & deref inside its destructor
         https://bugs.webkit.org/show_bug.cgi?id=201576
 

Modified: trunk/Source/WTF/wtf/spi/darwin/SandboxSPI.h (250762 => 250763)


--- trunk/Source/WTF/wtf/spi/darwin/SandboxSPI.h	2019-10-05 01:59:35 UTC (rev 250762)
+++ trunk/Source/WTF/wtf/spi/darwin/SandboxSPI.h	2019-10-05 02:52:42 UTC (rev 250763)
@@ -64,6 +64,9 @@
 char *sandbox_extension_issue_generic(const char *extension_class, uint32_t flags);
 char *sandbox_extension_issue_mach_to_process_by_pid(const char *extension_class, const char *name, uint32_t flags, pid_t);
 char *sandbox_extension_issue_file_to_process_by_pid(const char *extension_class, const char *path, uint32_t flags, pid_t);
+#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400) || (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 120000)
+char *sandbox_extension_issue_file_to_process(const char *extension_class, const char *path, uint32_t flags, audit_token_t);
+#endif
 int sandbox_check(pid_t, const char *operation, enum sandbox_filter_type, ...);
 int sandbox_check_by_audit_token(audit_token_t, const char *operation, enum sandbox_filter_type, ...);
 int sandbox_container_path_for_pid(pid_t, char *buffer, size_t bufsize);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to