mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 12:29:16 -04:00
- The port now uses the combined patch set for OpenBSD and FreeBSD maintained by Robert Nagy. - Fix build on i386 again. Obtained from: Robert Nagy <robert@openbsd.org> Security: https://vuxml.freebsd.org/freebsd/e12432af-8e73-11ec-8bc4-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/e852f43c-846e-11ec-b043-3065ec8fd3ec.html
18 lines
645 B
C++
18 lines
645 B
C++
--- content/browser/sandbox_host_linux.cc.orig 2022-02-07 13:39:41 UTC
|
|
+++ content/browser/sandbox_host_linux.cc
|
|
@@ -45,6 +45,7 @@ void SandboxHostLinux::Init() {
|
|
// Instead, it replies on a temporary socket provided by the caller.
|
|
PCHECK(0 == shutdown(browser_socket, SHUT_WR)) << "shutdown";
|
|
|
|
+#if !defined(OS_BSD)
|
|
int pipefds[2];
|
|
CHECK(0 == pipe(pipefds));
|
|
const int child_lifeline_fd = pipefds[0];
|
|
@@ -55,6 +56,7 @@ void SandboxHostLinux::Init() {
|
|
ipc_thread_ = std::make_unique<base::DelegateSimpleThread>(
|
|
ipc_handler_.get(), "sandbox_ipc_thread");
|
|
ipc_thread_->Start();
|
|
+#endif
|
|
}
|
|
|
|
} // namespace content
|