From 2186cac8e7bbc07c6aba0e1fbea91ca789814ecd Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 21 Apr 2010 14:18:56 -0700 Subject: [PATCH] configure: Print version of Xapian found during configure check. This might be handy to know, (since there are important performance considerations that depend on the Xapian version). --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 095a476e..ec8c3fd3 100755 --- a/configure +++ b/configure @@ -170,7 +170,7 @@ printf "Checking for Xapian development files... " have_xapian=0 for xapian_config in ${XAPIAN_CONFIG}; do if ${xapian_config} --version > /dev/null 2>&1; then - printf "Yes.\n" + printf "Yes (%s).\n" $(${xapian_config} --version | sed -e 's/.* //') have_xapian=1 xapian_cxxflags=$(${xapian_config} --cxxflags) xapian_ldflags=$(${xapian_config} --libs) -- 2.43.0