From: Pieter Lexis Date: Tue, 7 Apr 2015 12:27:30 +0000 (+0200) Subject: Correctly report SQLite3 usage in summary X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~98^2~15^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2414%2Fhead;p=thirdparty%2Fpdns.git Correctly report SQLite3 usage in summary --- diff --git a/configure.ac b/configure.ac index ee6f820faa..edeeb16153 100644 --- a/configure.ac +++ b/configure.ac @@ -395,7 +395,10 @@ AC_MSG_NOTICE([LDFLAGS: $LDFLAGS]) AC_MSG_NOTICE([]) AC_MSG_NOTICE([BOOST_CPPFLAGS: $BOOST_CPPFLAGS]) AC_MSG_NOTICE([]) -AC_MSG_NOTICE([SQLite3 support: $with_sqlite3]) +AS_IF([test "x$needsqlite3" != "x"], + [AC_MSG_NOTICE([SQLite3 support: yes])], + [AC_MSG_NOTICE([SQLite3 support: no])] +) AS_IF([test "x$LUAPC" != "x"], [AC_MSG_NOTICE([Lua support: $LUAPC])], [AC_MSG_NOTICE([Lua support: no])]