From 9419a5602bc07860ee607c507c871338696e5713 Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Fri, 7 Jun 2019 14:35:31 +0200 Subject: [PATCH] auth configure: mention more features enabled (cherry picked from commit b8fa2bf249af26774bd099de832a9cda914c796a) --- configure.ac | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 6ae903b50..22fdd6a32 100644 --- a/configure.ac +++ b/configure.ac @@ -350,8 +350,19 @@ AC_MSG_NOTICE([LDFLAGS: $LDFLAGS]) AC_MSG_NOTICE([LIBS: $LIBS]) AC_MSG_NOTICE([BOOST_CPPFLAGS: $BOOST_CPPFLAGS]) AC_MSG_NOTICE([]) -AC_MSG_NOTICE([Features enabled]) -AC_MSG_NOTICE([----------------]) +AC_MSG_NOTICE([Extras enabled]) +AC_MSG_NOTICE([--------------]) +AS_IF([test "x$enable_tools" = "xyes"], + [AC_MSG_NOTICE([Tools: yes])], + [AC_MSG_NOTICE([Tools: no])] +) +AS_IF([test "x$enable_ixfrdist" = "xyes"], + [AC_MSG_NOTICE([ixfrdist: yes])], + [AC_MSG_NOTICE([ixfrdist: no])] +) +AC_MSG_NOTICE([]) +AC_MSG_NOTICE([Server Features enabled]) +AC_MSG_NOTICE([-----------------------]) AC_MSG_NOTICE([Built-in modules: $modules]) AC_MSG_NOTICE([Dynamic modules: $dynmodules]) AC_MSG_NOTICE([]) @@ -383,6 +394,9 @@ AS_IF([test "x$enable_experimental_pkcs11" = "xyes"], AS_IF([test "x$enable_experimental_gss_tsig" = "xyes"], [AC_MSG_NOTICE([GSS-TSIG: yes])] ) +AS_IF([test "x$enable_lua_records" = "xyes"], + [AC_MSG_NOTICE([LUA records: yes])] +) AS_IF([test "x$systemd" != "xn"], [AC_MSG_NOTICE([systemd: yes])], [AC_MSG_NOTICE([systemd: no])] @@ -390,4 +404,10 @@ AS_IF([test "x$systemd" != "xn"], AS_IF([test "x$enable_remotebackend_zeromq" != "xno"], [AC_MSG_NOTICE([ZeroMQ connector for remotebackend: yes])] ) +AS_IF([test -n "$GEOIP_LIBS"], + [AC_MSG_NOTICE([libgeoip for geoipbackend: yes])] +) +AS_IF([test -n "$MMDB_LIBS"], + [AC_MSG_NOTICE([libmaxminddb for geoipbackend: yes])] +) AC_MSG_NOTICE([]) -- 2.49.0