From: Pieter Lexis Date: Tue, 21 Jun 2016 12:08:30 +0000 (+0200) Subject: rec: fix systemd support reporting X-Git-Tag: auth-4.0.0-rc1~23^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dab358de9b7fa8b7c39ee9ce43996a3dc8f6aca2;p=pdns rec: fix systemd support reporting And add a banner to the features enabled/supported --- diff --git a/pdns/recursordist/configure.ac b/pdns/recursordist/configure.ac index 86c0d36e0..9905da85c 100644 --- a/pdns/recursordist/configure.ac +++ b/pdns/recursordist/configure.ac @@ -174,19 +174,22 @@ 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([----------------]) 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$PROTOBUF_LIBS" != "x" -a x"$PROTOC" != "x"], - [AC_MSG_NOTICE([Protobuf support: yes])], - [AC_MSG_NOTICE([Protobuf support: no])] + [AC_MSG_NOTICE([Protobuf: yes])], + [AC_MSG_NOTICE([Protobuf: no])] ) -AS_IF([test "x$systemd" != "x"], - [AC_MSG_NOTICE([systemd support: yes])], - [AC_MSG_NOTICE([systemd support: no])] +AS_IF([test "x$systemd" != "xn"], + [AC_MSG_NOTICE([systemd: yes])], + [AC_MSG_NOTICE([systemd: no])] ) AC_MSG_NOTICE([])