Skip to content

Commit

Permalink
Merge pull request #702 from pabuhler/meson-mbedtls-build-fix
Browse files Browse the repository at this point in the history
explicitly look for mbedcrypto dependency
  • Loading branch information
pabuhler committed Apr 22, 2024
2 parents e53e106 + 981d695 commit 8a05a38
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 8a05a38

Please sign in to comment.