]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
Enable compile of SVCB and HTTPS support by default
authorWillem Toorop <willem@nlnetlabs.nl>
Thu, 9 Jun 2022 10:27:34 +0000 (12:27 +0200)
committerWillem Toorop <willem@nlnetlabs.nl>
Thu, 9 Jun 2022 10:27:34 +0000 (12:27 +0200)
Since it is almost RFC. See also Issue #177

Changelog
configure.ac

index c0c7c5f3c9be98360a2da03a62122000c150231b..c51e473c9bb69bea4a8adddc6133501141d2fef5 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,7 @@
          parameters. Thanks aldot.
        * Fix build error on Solaris 10 with inet_ntop redeclaration error.
        * Fix -U flag with ldns-signzone. Thanks Ulrich and Jonathan
+       * Enable compile of SVCB and HTTPS support by default.
 
 1.8.1  2021-12-03
        * bugfix #146: ldns-1.7.1 had soname 3.0, so ldns-1.8.x soname
index fb75a104e99a258f400f795b4f788962e41001c5..6def676f585d7fbc8a183c646980a4db59ac173c 100644 (file)
@@ -724,12 +724,12 @@ case "$enable_rrtype_amtrelay" in
        no|*)
                ;;
 esac
-AC_ARG_ENABLE(rrtype-svcb-https, AC_HELP_STRING([--enable-rrtype-svcb-https], [Enable draft RR types SVCB and HTTPS.]))
+AC_ARG_ENABLE(rrtype-svcb-https, AC_HELP_STRING([--disable-rrtype-svcb-https], [Disable RR types SVCB and HTTPS.]))
 case "$enable_rrtype_svcb_https" in
-       yes)
-               AC_DEFINE_UNQUOTED([RRTYPE_SVCB_HTTPS], [], [Define this to enable RR types SVCB and HTTPS.])
+       no)
                ;;
-       no|*)
+       yes|*)
+               AC_DEFINE_UNQUOTED([RRTYPE_SVCB_HTTPS], [], [Define this to enable RR types SVCB and HTTPS.])
                ;;
 esac