From 786d771eb91a579a1c65de68b3a932962e33478e Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Tue, 7 Apr 2015 14:27:30 +0200 Subject: [PATCH] Correctly report SQLite3 usage in summary --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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])] -- 2.47.2