spa: filter-graph: ladspa: add dl_lib dependency

The ladspa plugin uses `dlopen()`, etc. directly,
so add the `dl_lib` dependency. This is not necessary
in a new enough environment since newer glibc versions
have merged most things into libc.
This commit is contained in:
Barnabás Pőcze 2024-12-11 00:18:06 +01:00 committed by Wim Taymans
parent d6567ea6a2
commit b5490954d0

View file

@ -81,7 +81,7 @@ spa_filter_graph_plugin_ladspa = shared_library('spa-filter-graph-plugin-ladspa'
include_directories : [configinc],
install : true,
install_dir : spa_plugindir / 'filter-graph',
dependencies : [ filter_graph_dependencies ]
dependencies : [ filter_graph_dependencies, dl_lib ]
)
if libmysofa_dep.found()