From: Vladimír Čunát Date: Wed, 15 Oct 2025 11:01:01 +0000 (+0200) Subject: meson: allow libngtcp2 >= 1.11.0 X-Git-Tag: v6.2.0~2^2~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc3ff6a5a03e648698f3df69fca911518728e1c6;p=thirdparty%2Fknot-resolver.git meson: allow libngtcp2 >= 1.11.0 For now. We might revisit the choice, but this version looks not too old and common in .deb --- diff --git a/meson.build b/meson.build index a657d665e..a019cb1b8 100644 --- a/meson.build +++ b/meson.build @@ -35,7 +35,7 @@ gnutls = dependency('gnutls', version: '>=3.4', required: true) luajit = dependency('luajit') # https://mesonbuild.com/howtox.html#add-math-library-lm-portably libm = meson.get_compiler('c').find_library('m', required : false) -libngtcp2 = dependency('libngtcp2', version: '>=1.14.0') +libngtcp2 = dependency('libngtcp2', version: '>=1.11.0') libngtcp2_crypto = dependency('libngtcp2_crypto_gnutls') message('------------------------------')