From: Francis Dupont Date: Wed, 26 Mar 2025 08:09:25 +0000 (+0100) Subject: [#3785] Added error on no crypto X-Git-Tag: Kea-2.7.8~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=733019a4ec3668973ea1db113bbdc8cdbaa54756;p=thirdparty%2Fkea.git [#3785] Added error on no crypto --- diff --git a/meson.build b/meson.build index 39d988f614..1d2e884225 100644 --- a/meson.build +++ b/meson.build @@ -238,10 +238,14 @@ GTEST_DEP = dependency( if crypto_opt == 'botan' if botan.found() CRYPTO_DEP = botan + else + error('botan required but not found') endif elif crypto_opt == 'openssl' if openssl.found() CRYPTO_DEP = openssl + else + error('openssl required but not found') endif endif