From: Pieter Lexis Date: Fri, 7 Jun 2019 12:35:31 +0000 (+0200) Subject: auth configure: mention more features enabled X-Git-Tag: dnsdist-1.4.0-rc1~101^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8fa2bf249af26774bd099de832a9cda914c796a;p=thirdparty%2Fpdns.git auth configure: mention more features enabled --- diff --git a/configure.ac b/configure.ac index 501661e6a7..b3d259b1ec 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([])