From b43b4a672d0b56da9d769ff10150e05c112c9502 Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Tue, 21 Jun 2016 14:09:49 +0200 Subject: [PATCH] auth: clean up configure summary --- configure.ac | 38 +++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/configure.ac b/configure.ac index 4317fe557..9f7039e9e 100644 --- a/configure.ac +++ b/configure.ac @@ -332,12 +332,7 @@ AC_MSG_NOTICE([]) AC_MSG_NOTICE([Configuration summary]) AC_MSG_NOTICE([=====================]) AC_MSG_NOTICE([]) -AC_MSG_NOTICE([Configured with:$pdns_configure_args]) -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([Modules: $modules]) -AC_MSG_NOTICE([Dynamic Modules: $dynmodules]) -AC_MSG_NOTICE([]) -AC_MSG_NOTICE([With ZeroMQ connector for remotebackend: $enable_remotebackend_zeromq]) +AC_MSG_NOTICE([Configured with: $pdns_configure_args]) AC_MSG_NOTICE([]) AC_MSG_NOTICE([CC: $CC]) AC_MSG_NOTICE([CXX: $CXX]) @@ -347,22 +342,35 @@ AC_MSG_NOTICE([CPPFLAGS: $CPPFLAGS]) AC_MSG_NOTICE([CXXFLAGS: $CXXFLAGS]) AC_MSG_NOTICE([LDFLAGS: $LDFLAGS]) AC_MSG_NOTICE([LIBS: $LIBS]) -AC_MSG_NOTICE([]) AC_MSG_NOTICE([BOOST_CPPFLAGS: $BOOST_CPPFLAGS]) AC_MSG_NOTICE([]) +AC_MSG_NOTICE([Features enabled]) +AC_MSG_NOTICE([----------------]) +AC_MSG_NOTICE([Built-in modules: $modules]) +AC_MSG_NOTICE([Dynamic modules: $dynmodules]) +AC_MSG_NOTICE([]) AS_IF([test "x$openssl_ecdsa" == "xyes"], - [AC_MSG_NOTICE([OpenSSL ecdsa support: yes])], - [AC_MSG_NOTICE([OpenSSL ecdsa support: no])] + [AC_MSG_NOTICE([OpenSSL ecdsa: yes])], + [AC_MSG_NOTICE([OpenSSL ecdsa: no])] ) AS_IF([test "x$needsqlite3" != "x"], - [AC_MSG_NOTICE([SQLite3 support: yes])], - [AC_MSG_NOTICE([SQLite3 support: no])] + [AC_MSG_NOTICE([SQLite3: yes])], + [AC_MSG_NOTICE([SQLite3: no])] ) AS_IF([test "x$LUAPC" != "x"], - [AC_MSG_NOTICE([Lua support: $LUAPC])], - [AC_MSG_NOTICE([Lua support: no])] -) + [AC_MSG_NOTICE([Lua: $LUAPC])], + [AS_IF([test "x$LUAJITPC" != "x"], + [AC_MSG_NOTICE([LuaJit: $LUAJITPC])], + [AC_MSG_NOTICE([Lua/LuaJit: no])]) +]) AS_IF([test "x$enable_experimental_gss_tsig" == "xyes"], - [AC_MSG_NOTICE([GSS-TSIG support: yes])] + [AC_MSG_NOTICE([GSS-TSIG: yes])] +) +AS_IF([test "x$systemd" != "xn"], + [AC_MSG_NOTICE([systemd: yes])], + [AC_MSG_NOTICE([systemd: no])] +) +AS_IF([test "x$enable_remotebackend_zeromq" != "xno"], + [AC_MSG_NOTICE([ZeroMQ connector for remotebackend: yes])] ) AC_MSG_NOTICE([]) -- 2.40.0