From: Ruben Kerkhof Date: Sat, 7 Mar 2015 23:37:30 +0000 (+0100) Subject: Show the Lua version at the end of ./configure X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~98^2~59^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c92ada53fa5b2d8738d6234a32b3e7bf9b66a5b0;p=pdns Show the Lua version at the end of ./configure --- diff --git a/configure.ac b/configure.ac index 831786e3f..85f0c4139 100644 --- a/configure.ac +++ b/configure.ac @@ -389,7 +389,10 @@ AC_MSG_NOTICE([]) AC_MSG_NOTICE([BOOST_CPPFLAGS: $BOOST_CPPFLAGS]) AC_MSG_NOTICE([]) AC_MSG_NOTICE([SQLite3 support: $with_sqlite3]) -AC_MSG_NOTICE([Lua support: $with_lua]) +AS_IF([test "x$LUAPC" != "x"], + [AC_MSG_NOTICE([Lua support: $LUAPC])], + [AC_MSG_NOTICE([Lua support: no])] +) AS_IF([test "$HAVE_CXX11" = "1"], [AC_MSG_NOTICE([C++2011 support: yes])], [AC_MSG_NOTICE([C++2011 support: no])]