aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-21 14:18:56 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-21 14:18:56 -0700
commit2186cac8e7bbc07c6aba0e1fbea91ca789814ecd (patch)
tree6d672ab76071f5df46ddcee10aee4af0ef54bdc6 /configure
parentcbcc3454aee63c26864428039ea688c5eb3e6be0 (diff)
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).
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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)