2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00

[#3680] Meson: Add the more common dependencies to pkg-config as well

This commit is contained in:
Andrei Pavel 2025-06-19 17:32:26 +03:00
parent b95d69ba6f
commit 72f8978cc5
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -1043,7 +1043,16 @@ endif
#### pkg-config #### pkg-config
requires = [] 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' if i.found() and i.type_name() == 'pkgconfig'
requires += i requires += i
endif endif