aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-remoting_host_host__main.cc
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2022-03-02 09:32:47 +0000
committerRene Ladan <rene@FreeBSD.org>2022-03-02 09:37:41 +0000
commit16e13609f309d82c7d89dda61ff53280f89182bd (patch)
treed6c66c3d101d165770d583571b56623363ae902b /www/chromium/files/patch-remoting_host_host__main.cc
parentfc8a638140fac8bf22e7e62d12f5ed2cea00f107 (diff)
downloadports-16e13609f309d82c7d89dda61ff53280f89182bd.tar.gz
ports-16e13609f309d82c7d89dda61ff53280f89182bd.zip
Diffstat (limited to 'www/chromium/files/patch-remoting_host_host__main.cc')
-rw-r--r--www/chromium/files/patch-remoting_host_host__main.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/www/chromium/files/patch-remoting_host_host__main.cc b/www/chromium/files/patch-remoting_host_host__main.cc
index ac8a319f73d0..71415397194e 100644
--- a/www/chromium/files/patch-remoting_host_host__main.cc
+++ b/www/chromium/files/patch-remoting_host_host__main.cc
@@ -1,29 +1,29 @@
---- remoting/host/host_main.cc.orig 2022-02-07 13:39:41 UTC
+--- remoting/host/host_main.cc.orig 2022-02-28 16:54:41 UTC
+++ remoting/host/host_main.cc
@@ -50,7 +50,7 @@ int FileChooserMain();
int RdpDesktopSessionMain();
int UrlForwarderConfiguratorMain();
- #endif // defined(OS_WIN)
--#if defined(OS_LINUX) || defined(OS_CHROMEOS)
-+#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_BSD)
+ #endif // BUILDFLAG(IS_WIN)
+-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
int XSessionChooserMain();
- #endif // defined(OS_LINUX) || defined(OS_CHROMEOS)
+ #endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
@@ -63,7 +63,7 @@ const char kUsageMessage[] =
"\n"
"Options:\n"
--#if defined(OS_LINUX)
-+#if defined(OS_LINUX) || defined(OS_BSD)
+-#if BUILDFLAG(IS_LINUX)
++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
" --audio-pipe-name=<pipe> - Sets the pipe name to capture audio on "
"Linux.\n"
- #endif // defined(OS_LINUX)
+ #endif // BUILDFLAG(IS_LINUX)
@@ -152,7 +152,7 @@ MainRoutineFn SelectMainRoutine(const std::string& pro
} else if (process_type == kProcessTypeUrlForwarderConfigurator) {
main_routine = &UrlForwarderConfiguratorMain;
- #endif // defined(OS_WIN)
--#if defined(OS_LINUX) || defined(OS_CHROMEOS)
-+#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_BSD)
+ #endif // BUILDFLAG(IS_WIN)
+-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
} else if (process_type == kProcessTypeXSessionChooser) {
main_routine = &XSessionChooserMain;
- #endif // defined(OS_LINUX) || defined(OS_CHROMEOS)
+ #endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)