meson: spa/plugins: don't check if the plugin dependencies have been found

If these optional plugins are enabled in meson options,
then the dependencies should be required to proceed.
It is not cool to compile with let's say bluez5 explicitly
enabled and after compilation discover that bluez was not
found and meson silently skipped that plugin.
This commit is contained in:
George Kiagiadakis 2019-01-29 17:42:04 +02:00 committed by Wim Taymans
parent 58a878623b
commit 99e1bb1068

View file

@ -10,10 +10,10 @@ endif
if get_option('audiotestsrc') if get_option('audiotestsrc')
subdir('audiotestsrc') subdir('audiotestsrc')
endif endif
if get_option('bluez5') and sbc_dep.found() and bluez_dep.found() if get_option('bluez5')
subdir('bluez5') subdir('bluez5')
endif endif
if get_option('ffmpeg') and avcodec_dep.found() if get_option('ffmpeg')
subdir('ffmpeg') subdir('ffmpeg')
endif endif
if get_option('support') if get_option('support')