From: Remi Gacogne Date: Thu, 10 Apr 2025 10:51:32 +0000 (+0200) Subject: dnsdist: Fix the version check for OpenSSL when providers are enabled X-Git-Tag: dnsdist-2.0.0-alpha2~87^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9edcf0a814adc1c2033f8a89a56356c81afb4d11;p=thirdparty%2Fpdns.git dnsdist: Fix the version check for OpenSSL when providers are enabled --- diff --git a/pdns/dnsdistdist/meson/libssl-providers/meson.build b/pdns/dnsdistdist/meson/libssl-providers/meson.build index 6bd3f24b0a..12d2a172fb 100644 --- a/pdns/dnsdistdist/meson/libssl-providers/meson.build +++ b/pdns/dnsdistdist/meson/libssl-providers/meson.build @@ -5,7 +5,7 @@ if opt_libssl_providers if not opt_libssl.allowed() error('OpenSSL TLS providers requested but libssl is not enabled') endif - dep_libssl_3_later = dependency('libssl >= 3.0', required: false) + dep_libssl_3_later = dependency('libssl', version: '>= 3.0', required: false) if not dep_libssl_3_later.found() error('OpenSSL TLS providers requested but libssl is not >= 3.0')