mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
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:
parent
58a878623b
commit
99e1bb1068
1 changed files with 2 additions and 2 deletions
|
|
@ -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')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue