From 4f78dbfe7d0e84cecc9225ea5dd73abb9688378f Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Thu, 11 Jun 2015 15:47:39 +0200 Subject: [PATCH] fix --disable-native-stub-dnssec option --- configure | 6 +++--- configure.ac | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure b/configure index d197b17b..b9b00f3e 100755 --- a/configure +++ b/configure @@ -11742,15 +11742,15 @@ if test "${enable_native_stub_dnssec+set}" = set; then : enableval=$enable_native_stub_dnssec; fi -case "$enable_broken_native_stub_dnssec" in +case "$enable_native_stub_dnssec" in + no) + ;; yes|*) cat >>confdefs.h <<_ACEOF #define STUB_NATIVE_DNSSEC 1 _ACEOF - ;; - no) ;; esac diff --git a/configure.ac b/configure.ac index f4811cc9..a629fc13 100644 --- a/configure.ac +++ b/configure.ac @@ -133,12 +133,12 @@ case "$enable_tcp_fastopen" in esac AC_ARG_ENABLE(native-stub-dnssec, AC_HELP_STRING([--disable-native-stub-dnssec], [Disable native stub DNSSEC support])) -case "$enable_broken_native_stub_dnssec" in +case "$enable_native_stub_dnssec" in + no) + ;; yes|*) AC_DEFINE_UNQUOTED([STUB_NATIVE_DNSSEC], [1], [Define this to enable native stub DNSSEC support.]) ;; - no) - ;; esac ACX_WITH_SSL_OPTIONAL