]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
auth: clean up configure summary 4024/head
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 21 Jun 2016 12:09:49 +0000 (14:09 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Thu, 23 Jun 2016 09:21:51 +0000 (11:21 +0200)
configure.ac

index 4317fe557a3ca1e1724dab5a9efff1ef47e31d7a..9f7039e9ef36d0a61637d1450197d616910575fe 100644 (file)
@@ -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([])