summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2020-10-16 10:22:04 -0400
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-10-16 18:14:38 +0000
commit6780dfd55a3f35aafac489f4fdd92d97a3ce39d1 (patch)
treeaff4b03f0d5e8e5b7cdec67bdd1ce41a8d457b70 /libs
parente600c85aeee3305ebda9f4a8f9f221260a753254 (diff)
downloadgstreamer-6780dfd55a3f35aafac489f4fdd92d97a3ce39d1.tar.gz
pkgconfig: Fix missing libcheck dependencies in gstreamer-check-1.0
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/676>
Diffstat (limited to 'libs')
-rw-r--r--libs/gst/check/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/gst/check/meson.build b/libs/gst/check/meson.build
index b787238138..316465a350 100644
--- a/libs/gst/check/meson.build
+++ b/libs/gst/check/meson.build
@@ -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',