From 72f8978cc5d5937b3069f15e0efad7c8f93ae08d Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Thu, 19 Jun 2025 17:32:26 +0300 Subject: [PATCH] [#3680] Meson: Add the more common dependencies to pkg-config as well --- meson.build | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 4ca9053995..aee37da214 100644 --- a/meson.build +++ b/meson.build @@ -1043,7 +1043,16 @@ endif #### pkg-config requires = [] -foreach i : [CRYPTO_DEP, KRB5_DEP, LOG4CPLUS_DEP, MYSQL_DEP, POSTGRESQL_DEP] +foreach i : [ + boost_dep, + dl_dep, + threads_dep, + CRYPTO_DEP, + KRB5_DEP, + LOG4CPLUS_DEP, + MYSQL_DEP, + POSTGRESQL_DEP, +] if i.found() and i.type_name() == 'pkgconfig' requires += i endif