From: Charles-Henri Bruyand Date: Wed, 13 Dec 2023 08:27:34 +0000 (+0100) Subject: dnsdist: display if DNS over HTTP/3 is enabled or not in the configure report X-Git-Tag: dnsdist-1.9.0-alpha4~3^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F13610%2Fhead;p=thirdparty%2Fpdns.git dnsdist: display if DNS over HTTP/3 is enabled or not in the configure report --- diff --git a/pdns/dnsdistdist/configure.ac b/pdns/dnsdistdist/configure.ac index 9b3055c496..bace20d8bf 100644 --- a/pdns/dnsdistdist/configure.ac +++ b/pdns/dnsdistdist/configure.ac @@ -255,6 +255,10 @@ AS_IF([test "x$enable_dns_over_quic" != "xno"], [AC_MSG_NOTICE([DNS over QUIC (DoQ): yes])], [AC_MSG_NOTICE([DNS over QUIC (DoQ): no])] ) +AS_IF([test "x$enable_dns_over_http3" != "xno"], + [AC_MSG_NOTICE([DNS over HTTP/3 (DoH3): yes])], + [AC_MSG_NOTICE([DNS over HTTP/3 (DoH3): no])] +) AS_IF([test "x$enable_dns_over_tls" != "xno"], [ AS_IF([test "x$GNUTLS_LIBS" != "x"], [AC_MSG_NOTICE([GnuTLS: yes])],