From 2f35957ab869762568dc269db1eba3a1d4459be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Wed, 26 Jan 2022 13:57:13 -0500 Subject: meson: Fix openssl setting This should fix builds on platforms openssl --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f4b4552..4ab2267 100644 --- a/meson.build +++ b/meson.build @@ -238,7 +238,7 @@ if not crypto_found and opt_cryptolib != 'gnutls' if libcrypto_dep.found() and libssl_dep.found() crypto_dep = [libcrypto_dep, libssl_dep] - cdata.set('HAVE_OPENSSL', crypto_dep.found()) + cdata.set('HAVE_OPENSSL', true) crypto_found = true endif endif -- cgit v1.2.1