From 6780dfd55a3f35aafac489f4fdd92d97a3ce39d1 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 16 Oct 2020 10:22:04 -0400 Subject: [PATCH] pkgconfig: Fix missing libcheck dependencies in gstreamer-check-1.0 Part-of: --- libs/gst/check/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/gst/check/meson.build b/libs/gst/check/meson.build index b787238..316465a 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', -- 2.7.4