Commit 2f35957a authored by Olivier Crête's avatar Olivier Crête

meson: Fix openssl setting

This should fix builds on platforms openssl
parent 05a981bc
...@@ -238,7 +238,7 @@ if not crypto_found and opt_cryptolib != 'gnutls' ...@@ -238,7 +238,7 @@ if not crypto_found and opt_cryptolib != 'gnutls'
if libcrypto_dep.found() and libssl_dep.found() if libcrypto_dep.found() and libssl_dep.found()
crypto_dep = [libcrypto_dep, libssl_dep] crypto_dep = [libcrypto_dep, libssl_dep]
cdata.set('HAVE_OPENSSL', crypto_dep.found()) cdata.set('HAVE_OPENSSL', true)
crypto_found = true crypto_found = true
endif endif
endif endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment