From 492603d723ba0bfc6611299f6e32eb624b32343e Mon Sep 17 00:00:00 2001 From: Marc Leeman Date: Fri, 7 Jun 2019 14:12:25 +0000 Subject: [PATCH] rtpmanagerbad: fix the plugin registration After compilation, the compiled library needs to be added to the list of plugin libraries. . Also, fix for static builds --- gst/rtp/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst/rtp/meson.build b/gst/rtp/meson.build index bb21dae..5c37ec5 100644 --- a/gst/rtp/meson.build +++ b/gst/rtp/meson.build @@ -13,3 +13,5 @@ gstrtp = library('gstrtpmanagerbad', c_args: gst_plugins_bad_args, install_dir: plugins_install_dir, ) +pkgconfig.generate(gstrtp, install_dir : plugins_pkgconfig_install_dir) +plugins += [gstrtp] -- 2.7.4