From b5490954d0df92f822d350635c87ae61c06d943b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Wed, 11 Dec 2024 00:18:06 +0100 Subject: [PATCH] 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. --- spa/plugins/filter-graph/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/filter-graph/meson.build b/spa/plugins/filter-graph/meson.build index 3d74958ee..c346a9649 100644 --- a/spa/plugins/filter-graph/meson.build +++ b/spa/plugins/filter-graph/meson.build @@ -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()