From: Andrei Pavel Date: Thu, 19 Jun 2025 14:32:26 +0000 (+0300) Subject: [#3680] Meson: Add the more common dependencies to pkg-config as well X-Git-Tag: Kea-3.0.0~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=72f8978cc5d5937b3069f15e0efad7c8f93ae08d;p=thirdparty%2Fkea.git [#3680] Meson: Add the more common dependencies to pkg-config as well --- 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