mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 10:36:38 -04:00
14 lines
446 B
C++
14 lines
446 B
C++
--- media/audio/pulse/pulse_util.cc.orig 2024-09-30 07:45:04 UTC
|
|
+++ media/audio/pulse/pulse_util.cc
|
|
@@ -50,7 +50,11 @@ constexpr char kBrowserDisplayName[] = "chromium-brows
|
|
|
|
#if defined(DLOPEN_PULSEAUDIO)
|
|
static const base::FilePath::CharType kPulseLib[] =
|
|
+#if BUILDFLAG(IS_BSD)
|
|
+ FILE_PATH_LITERAL("libpulse.so");
|
|
+#else
|
|
FILE_PATH_LITERAL("libpulse.so.0");
|
|
+#endif
|
|
#endif
|
|
|
|
void DestroyMainloop(pa_threaded_mainloop* mainloop) {
|