From: Pieter Lexis Date: Fri, 19 Jun 2015 08:17:53 +0000 (+0200) Subject: Correctly notice on GSS-TSIG support X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~77^2~9^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2609%2Fhead;p=thirdparty%2Fpdns.git Correctly notice on GSS-TSIG support Show the correct state of GSS-TSIG support, but only if it is enabled. --- diff --git a/configure.ac b/configure.ac index d4deb969b6..050826fa1e 100644 --- a/configure.ac +++ b/configure.ac @@ -403,8 +403,7 @@ AS_IF([test "x$LUAPC" != "x"], [AC_MSG_NOTICE([Lua support: $LUAPC])], [AC_MSG_NOTICE([Lua support: no])] ) -AS_IF(test "x$enable_experimental_gss_tsig" != "xno"], - [AC_MSG_NOTICE([GSS-TSIG support: yes])], - [AC_MSG_NOTICE([GSS-TSIG support: no])] +AS_IF(test "x$enable_experimental_gss_tsig" == "xyes"], + [AC_MSG_NOTICE([GSS-TSIG support: yes])] ) AC_MSG_NOTICE([])