From: Olivier CrĂȘte Date: Tue, 2 Nov 2021 16:33:13 +0000 (-0400) Subject: meson: Fix name of variable X-Git-Tag: accepted/tizen/unified/20220221.080256~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9ad4692a1d507592730d6b081d53aade2b2c9de;p=platform%2Fupstream%2Flibnice.git meson: Fix name of variable This is a fix over the recent fix in commit 574f44b4 Change-Id: I922f0895ae13d5802aea4775860f642d18c8d86c --- diff --git a/meson.build b/meson.build index 41aeb96..48b69ac 100644 --- a/meson.build +++ b/meson.build @@ -201,7 +201,7 @@ if opt_cryptolib != 'openssl' else crypto_dep = dependency('openssl', required: false) cdata.set('HAVE_OPENSSL', crypto_dep.found()) - if not crypto_dep.found() and openssl == 'auto' + if not crypto_dep.found() and opt_cryptolib == 'auto' crypto_dep = dependency('gnutls', version: gnutls_req, required: false) cdata.set('HAVE_GNUTLS', crypto_dep.found()) endif