From 3fa10cff2fcc546b8a24844b8cf9788b91a00916 Mon Sep 17 00:00:00 2001 From: Charles-Henri Bruyand Date: Wed, 13 Dec 2023 09:27:34 +0100 Subject: [PATCH] dnsdist: display if DNS over HTTP/3 is enabled or not in the configure report --- pdns/dnsdistdist/configure.ac | 4 ++++ 1 file changed, 4 insertions(+) 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])], -- 2.47.2