Re: [PATCH] Add mbedtls to PKGMODULES
Milan Broz <[email protected]> Tue, 2 Jun 2026 13:41:31 +0200
| Newsgroups | dev.linux.lists.cryptsetup |
|---|---|
| Message-ID | <[email protected]> |
Hi, I added the patch to MR for review https://gitlab.com/cryptsetup/cryptsetup/-/merge_requests/931 Thanks, Milan On 6/1/26 10:37 PM, Anton Lundin wrote: > When cryptsetup is built with --with-crypto_backend=mbedtls, the > pkg-config file for libcryptsetup should include mbedtls. > --- > configure.ac | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/configure.ac b/configure.ac > index 52ddf11b..260b0ab6 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -741,6 +741,7 @@ case $with_crypto_backend in > openssl) PKGMODULES="$PKGMODULES openssl" ;; > nss) PKGMODULES="$PKGMODULES nss" ;; > nettle) PKGMODULES="$PKGMODULES nettle" ;; > + mbedtls) PKGMODULES="$PKGMODULES mbedtls" ;; > esac > if test "x$enable_libargon2" = "xyes"; then > PKGMODULES="$PKGMODULES libargon2"