ext/hls/meson.build: fix dependency logic
authorAdam Duskett <aduskett@gmail.com>
Wed, 29 May 2019 18:33:02 +0000 (18:33 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 11 Aug 2019 16:32:00 +0000 (17:32 +0100)
commit93a374d18e09d00f903dedee2a3427218691f6b0
treecbdf43d3aac9638896f79b7379e369f262d0ae0a
parenta1af0b4f866cedc061c62c3c562f6ab4c72ad032
ext/hls/meson.build: fix dependency logic

Currently, if one was to set -Dhls-crypto to either libgcrypt or openssl
instead of auto, the following lines would fail because hls_crypto_dep is not
yet set:

if not hls_crypto_dep.found() and ['auto', 'libgcrypt'].contains(hls_crypto)
if not hls_crypto_dep.found() and ['auto', 'openssl'].contains(hls_crypto)

Instead, change "if not hls_crypto_dep.found()" to "if not have_hls_crypto"
which fixes the error.
ext/hls/meson.build