1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Fix FTBFS due to underlinking with libserd
linking piper-vamp-simple-server failed with a cryptic error, the reason
being that it did not explicitely link against libserd-0
Author: IOhannes m zmölnig
Forwarded: not-needed
Applied-Upstream: 865fbe253cde8e966709bb11dc8c441ceb3891ed
Last-Update: 2022-08-05
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- sonic-visualiser.orig/meson.build
+++ sonic-visualiser/meson.build
@@ -1372,6 +1372,7 @@
dependencies: [
capnp_gen_header_dep,
server_dependencies,
+ serd_dep,
],
link_args: [
feature_additional_libpaths,
|