$NetBSD$ * Part of patchset to build chromium on NetBSD * Based on OpenBSD's chromium patches, and pkgsrc's qt5-qtwebengine patches --- third_party/ipcz/src/reference_drivers/random.cc.orig 2025-09-08 23:21:33.000000000 +0000 +++ third_party/ipcz/src/reference_drivers/random.cc @@ -53,7 +53,7 @@ decltype(&ProcessPrng) GetProcessPrng() } #endif -#if defined(OS_POSIX) && !BUILDFLAG(IS_MAC) +#if defined(OS_POSIX) && !BUILDFLAG(IS_MAC) && !BUILDFLAG(IS_BSD) void RandomBytesFromDevUrandom(absl::Span destination) { static int urandom_fd = [] { for (;;) { @@ -97,7 +97,7 @@ void RandomBytes(absl::Span des return; } } -#elif BUILDFLAG(IS_MAC) +#elif BUILDFLAG(IS_MAC) || BUILDFLAG(IS_BSD) const bool ok = getentropy(destination.data(), destination.size()) == 0; ABSL_ASSERT(ok); #elif BUILDFLAG(IS_IOS)