mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
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).
This commit is contained in:
parent
cbcc3454ae
commit
2186cac8e7
1 changed files with 1 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue