mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
Changelog: https://chromium.googlesource.com/chromium/src/+log/74.0.3729.169..75.0.3770.80?pretty=fuller&n=10000 Submitted by: Matthias Wolf <matthias@rheinwolf.de>
20 lines
447 B
C++
20 lines
447 B
C++
--- ipc/ipc_channel_common.cc.orig 2019-06-04 18:55:25 UTC
|
|
+++ ipc/ipc_channel_common.cc
|
|
@@ -9,7 +9,7 @@
|
|
|
|
namespace IPC {
|
|
|
|
-#if defined(OS_LINUX)
|
|
+#if defined(OS_LINUX) || defined(OS_BSD)
|
|
|
|
namespace {
|
|
int g_global_pid = 0;
|
|
@@ -25,7 +25,7 @@ int Channel::GetGlobalPid() {
|
|
return g_global_pid;
|
|
}
|
|
|
|
-#endif // defined(OS_LINUX)
|
|
+#endif // defined(OS_LINUX) || defined(OS_BSD)
|
|
|
|
// static
|
|
std::unique_ptr<Channel> Channel::CreateClient(
|