meson: Fix openssl setting 45/271245/1
authorOlivier CrĂȘte <olivier.crete@collabora.com>
Wed, 26 Jan 2022 18:57:13 +0000 (13:57 -0500)
committerSangchul Lee <sc11.lee@samsung.com>
Thu, 17 Feb 2022 05:19:09 +0000 (14:19 +0900)
This should fix builds on platforms openssl

Change-Id: If13f747fe358f1e7e0043356043a5085781d09c6

meson.build

index 07a6cc1..9657282 100644 (file)
@@ -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