mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
meson: move some filter-graph deps to spa
The filter-graph deps can now be in spa meson
This commit is contained in:
parent
507ec0b39a
commit
2b24b27f7f
2 changed files with 6 additions and 5 deletions
|
|
@ -350,8 +350,6 @@ ncurses_dep = dependency('ncursesw', required : false)
|
||||||
sndfile_dep = dependency('sndfile', version : '>= 1.0.20', required : get_option('sndfile'))
|
sndfile_dep = dependency('sndfile', version : '>= 1.0.20', required : get_option('sndfile'))
|
||||||
summary({'sndfile': sndfile_dep.found()}, bool_yn: true, section: 'pw-cat/pw-play/pw-dump/filter-chain')
|
summary({'sndfile': sndfile_dep.found()}, bool_yn: true, section: 'pw-cat/pw-play/pw-dump/filter-chain')
|
||||||
cdata.set('HAVE_SNDFILE', sndfile_dep.found())
|
cdata.set('HAVE_SNDFILE', sndfile_dep.found())
|
||||||
libmysofa_dep = dependency('libmysofa', required : get_option('libmysofa'))
|
|
||||||
summary({'libmysofa': libmysofa_dep.found()}, bool_yn: true, section: 'filter-chain')
|
|
||||||
pulseaudio_dep = dependency('libpulse', required : get_option('libpulse'))
|
pulseaudio_dep = dependency('libpulse', required : get_option('libpulse'))
|
||||||
summary({'libpulse': pulseaudio_dep.found()}, bool_yn: true, section: 'Streaming between daemons')
|
summary({'libpulse': pulseaudio_dep.found()}, bool_yn: true, section: 'Streaming between daemons')
|
||||||
avahi_dep = dependency('avahi-client', required : get_option('avahi'))
|
avahi_dep = dependency('avahi-client', required : get_option('avahi'))
|
||||||
|
|
@ -481,9 +479,6 @@ else
|
||||||
endif
|
endif
|
||||||
summary({'OpenSSL (for raop-sink)': openssl_lib.found()}, bool_yn: true)
|
summary({'OpenSSL (for raop-sink)': openssl_lib.found()}, bool_yn: true)
|
||||||
|
|
||||||
lilv_lib = dependency('lilv-0', required: get_option('lv2'))
|
|
||||||
summary({'lilv (for lv2 plugins)': lilv_lib.found()}, bool_yn: true)
|
|
||||||
|
|
||||||
libffado_dep = dependency('libffado', required: get_option('libffado'))
|
libffado_dep = dependency('libffado', required: get_option('libffado'))
|
||||||
summary({'ffado': libffado_dep.found()}, bool_yn: true)
|
summary({'ffado': libffado_dep.found()}, bool_yn: true)
|
||||||
glib2_snap_dep = dependency('glib-2.0', required : get_option('snap'))
|
glib2_snap_dep = dependency('glib-2.0', required : get_option('snap'))
|
||||||
|
|
|
||||||
|
|
@ -111,6 +111,12 @@ if get_option('spa-plugins').allowed()
|
||||||
cdata.set('HAVE_LIBUDEV', libudev_dep.found())
|
cdata.set('HAVE_LIBUDEV', libudev_dep.found())
|
||||||
summary({'Udev': libudev_dep.found()}, bool_yn: true, section: 'Backend')
|
summary({'Udev': libudev_dep.found()}, bool_yn: true, section: 'Backend')
|
||||||
|
|
||||||
|
libmysofa_dep = dependency('libmysofa', required : get_option('libmysofa'))
|
||||||
|
summary({'libmysofa': libmysofa_dep.found()}, bool_yn: true, section: 'filter-graph')
|
||||||
|
|
||||||
|
lilv_lib = dependency('lilv-0', required: get_option('lv2'))
|
||||||
|
summary({'lilv (for lv2 plugins)': lilv_lib.found()}, bool_yn: true, section: 'filter-graph')
|
||||||
|
|
||||||
cdata.set('HAVE_SPA_PLUGINS', '1')
|
cdata.set('HAVE_SPA_PLUGINS', '1')
|
||||||
subdir('plugins')
|
subdir('plugins')
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue