Re: [PATCH] Add mbedtls to PKGMODULES
Anton Lundin <[email protected]> Fri, 5 Jun 2026 19:11:19 +0200
| Newsgroups | dev.linux.lists.cryptsetup |
|---|---|
| Message-ID | <[email protected]> |
On 02 juni, 2026 - Milan Broz wrote: > Hi, > > I added the patch to MR for review > https://gitlab.com/cryptsetup/cryptsetup/-/merge_requests/931 > I was trying to figure out what the projects workflow was, and it looked like there were both patches on the mailing list and MR's on gitlab, and due to me not having a gitlab account since earlier it was just easier to send it to the ML. Thanks for the review and merging the code. //Anton > 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"