mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
22 lines
772 B
C++
22 lines
772 B
C++
--- sandbox/policy/sandbox.cc.orig 2024-06-25 12:08:48 UTC
|
|
+++ sandbox/policy/sandbox.cc
|
|
@@ -18,6 +18,10 @@
|
|
#include "sandbox/policy/linux/sandbox_linux.h"
|
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
|
|
+#if BUILDFLAG(IS_BSD)
|
|
+#include "sandbox/policy/sandbox.h"
|
|
+#endif // BUILDFLAG(IS_BSD)
|
|
+
|
|
#if BUILDFLAG(IS_MAC)
|
|
#include "sandbox/mac/seatbelt.h"
|
|
#endif // BUILDFLAG(IS_MAC)
|
|
@@ -32,7 +36,7 @@
|
|
namespace sandbox {
|
|
namespace policy {
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
|
|
bool Sandbox::Initialize(sandbox::mojom::Sandbox sandbox_type,
|
|
SandboxLinux::PreSandboxHook hook,
|
|
const SandboxLinux::Options& options) {
|