summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authordjcb <djcb@djcbsoftware.nl>2012-05-12 10:14:57 +0300
committerdjcb <djcb@djcbsoftware.nl>2012-05-12 10:14:57 +0300
commit1dc44228d50f680d31080c760f8688e9675d6526 (patch)
treefd0bc0dbc57b03ebc6b957b6783c546e40db8c56 /configure.ac
parent90628d2f38965b4770483b9fc44347a5b2303bc1 (diff)
* configure.ac: fix the xapian version-check regexp for macos
- interestingly, configure on macos uses zsh, unlike on linux where it's typically bash or dash (even when user has zsh as her shell). zsh's regexp are slightly different from the bash/dash ones.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2aa1101..b11076e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -140,7 +140,7 @@ AS_IF([test "x$XAPIAN_CONFIG" = "xno"],[
*** is in your PATH.])],
[xapian_version=$($XAPIAN_CONFIG --version | sed -e 's/.* //')])
AS_CASE([$xapian_version],
- [1.[[2-9]].[[0-9]]], [],
+ [1.[[2-9]].[[0-9]]*], [],
[AC_MSG_ERROR([*** xapian version >= 1.2 needed, but version $xapian_version found.])])
XAPIAN_CXXFLAGS="`$XAPIAN_CONFIG --cxxflags`"