mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-07 13:30:03 -05:00
meson: allow to build bluez support without libbluetooth
pulseaudio does not link against libbluetooth, as it's only talking to the bluez daemon over dbus. So the build dependency on libbluetooth is overly restrictive, as some embedded systems choose to ship without libbluetooth but still have bluez daemon support. This syncs the meson to the autotools configuration behavior by changing the bluez option to a default on boolean.
This commit is contained in:
parent
eb70672c56
commit
1911ef16e2
3 changed files with 4 additions and 5 deletions
|
|
@ -101,7 +101,7 @@ if avahi_dep.found()
|
|||
]
|
||||
endif
|
||||
|
||||
if bluez_dep.found()
|
||||
if get_option('bluez5')
|
||||
subdir('bluetooth')
|
||||
all_modules += [
|
||||
[ 'module-bluetooth-discover', 'bluetooth/module-bluetooth-discover.c' ],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue