aboutsummaryrefslogtreecommitdiff
path: root/devel/electron33/files/patch-remoting_host_setup_start__host__main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron33/files/patch-remoting_host_setup_start__host__main.cc')
-rw-r--r--devel/electron33/files/patch-remoting_host_setup_start__host__main.cc29
1 files changed, 0 insertions, 29 deletions
diff --git a/devel/electron33/files/patch-remoting_host_setup_start__host__main.cc b/devel/electron33/files/patch-remoting_host_setup_start__host__main.cc
deleted file mode 100644
index 64021dcd35c5..000000000000
--- a/devel/electron33/files/patch-remoting_host_setup_start__host__main.cc
+++ /dev/null
@@ -1,29 +0,0 @@
---- remoting/host/setup/start_host_main.cc.orig 2024-10-16 21:31:37 UTC
-+++ remoting/host/setup/start_host_main.cc
-@@ -38,7 +38,7 @@
- #include <unistd.h>
- #endif // BUILDFLAG(IS_POSIX)
-
--#if BUILDFLAG(IS_LINUX)
-+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
- #include "remoting/host/setup/daemon_controller_delegate_linux.h"
- #include "remoting/host/setup/start_host_as_root.h"
- #endif // BUILDFLAG(IS_LINUX)
-@@ -369,7 +369,7 @@ int StartHostMain(int argc, char** argv) {
- } // namespace
-
- int StartHostMain(int argc, char** argv) {
--#if BUILDFLAG(IS_LINUX)
-+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
- // Minimize the amount of code that runs as root on Posix systems.
- if (getuid() == 0) {
- return remoting::StartHostAsRoot(argc, argv);
-@@ -394,7 +394,7 @@ int StartHostMain(int argc, char** argv) {
-
- mojo::core::Init();
-
--#if BUILDFLAG(IS_LINUX)
-+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
- if (command_line->HasSwitch("no-start")) {
- // On Linux, registering the host with systemd and starting it is the only
- // reason start_host requires root. The --no-start options skips that final