fix --disable-native-stub-dnssec option

This commit is contained in:
Willem Toorop 2015-06-11 15:47:39 +02:00
parent ae1db39a33
commit 4f78dbfe7d
2 changed files with 6 additions and 6 deletions

6
configure vendored
View File

@ -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

View File

@ -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