blob: 0924a8cc4a10346cd3fb0824db04020ccf8bf046 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- media/audio/pulse/pulse_util.cc.orig 2024-10-16 21:31:33 UTC
+++ media/audio/pulse/pulse_util.cc
@@ -50,7 +50,11 @@ static const base::FilePath::CharType kPulseLib[] =
#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) {
|