summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2022-01-26 13:57:13 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2022-01-26 13:57:13 -0500
commit2f35957ab869762568dc269db1eba3a1d4459be7 (patch)
tree72ebdc30d7ad71d844a76f67aaaadbddab466529
parent05a981bc2b9ea111b2d0f80605852fb8db158375 (diff)
downloadlibnice-2f35957ab869762568dc269db1eba3a1d4459be7.tar.gz
meson: Fix openssl setting
This should fix builds on platforms openssl
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
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