]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3680] Meson: Add the more common dependencies to pkg-config as well
authorAndrei Pavel <andrei@isc.org>
Thu, 19 Jun 2025 14:32:26 +0000 (17:32 +0300)
committerAndrei Pavel <andrei@isc.org>
Thu, 19 Jun 2025 14:45:34 +0000 (17:45 +0300)
meson.build

index 4ca9053995c4ede6c1d844430afadfa31879a30a..aee37da214c86738d10f144e712682fe8e70ca2a 100644 (file)
@@ -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