pkgconfig: Fix missing libcheck dependencies in gstreamer-check-1.0

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/676>
This commit is contained in:
Xavier Claessens 2020-10-16 10:22:04 -04:00 committed by GStreamer Merge Bot
parent e600c85aee
commit 6780dfd55a

View file

@ -50,6 +50,10 @@ gst_check = library('gstcheck-@0@'.format(apiversion),
pkgconfig.generate(gst_check,
libraries : [libgst],
# FIXME: Add manually libcheck's dependencies because it's an uninstalled static
# library and Meson <0.56.0 does not handle them correctly.
# See https://github.com/mesonbuild/meson/pull/7488.
libraries_private: [rt_lib, mathlib],
variables : pkgconfig_variables,
subdirs : pkgconfig_subdirs,
name : 'gstreamer-check-1.0',