bluez5: fix dependency checking

Don't do subdir_done() in bluez5/meson.build, since the presence of
dependencies is supposed to be checked in spa/meson.build.
This commit is contained in:
Pauli Virtanen 2023-02-04 15:39:27 +02:00 committed by Wim Taymans
parent 73cc5d1dde
commit 417f1dc02a
2 changed files with 12 additions and 10 deletions

View file

@ -1,12 +1,5 @@
gnome = import('gnome')
bluez5_deps = [ mathlib, dbus_dep, glib2_dep, sbc_dep, bluez_dep, gio_dep, gio_unix_dep ]
foreach dep: bluez5_deps
if not dep.found()
subdir_done()
endif
endforeach
cdata.set('HAVE_BLUEZ_5_BACKEND_NATIVE',
get_option('bluez5-backend-hsp-native').allowed() or
get_option('bluez5-backend-hfp-native').allowed())