Skip to content

Commit

Permalink
Merge pull request #736 from pabuhler/mbedtls-link-fix
Browse files Browse the repository at this point in the history
explicitly look for mbedcrypto dependency
  • Loading branch information
pabuhler authored Dec 11, 2024
2 parents 3a399ab + 1af5c91 commit 2b1330d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ elif crypto_library == 'nss'
error('KDF support has not been implemented for NSS')
endif
elif crypto_library == 'mbedtls'
mbedtls_dep = dependency('mbedtls', required: false)
mbedtls_dep = dependency('mbedcrypto', required: false)
if not mbedtls_dep.found()
mbedtls_dep = cc.find_library('mbedcrypto', has_headers: ['mbedtls/aes.h'], required: true)
endif
Expand Down

0 comments on commit 2b1330d

Please sign in to comment.