From 897f596aacaca634d342d835ac2b133bc4bbced7 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Tue, 24 Nov 2015 12:28:27 +1300 Subject: [PATCH] Fix to actually reject PHP < 5.5 --- xapian-bindings/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xapian-bindings/configure.ac b/xapian-bindings/configure.ac index cbe0c7c6c..083fc3ca6 100644 --- a/xapian-bindings/configure.ac +++ b/xapian-bindings/configure.ac @@ -504,7 +504,7 @@ if test no != "$with_php" ; then AC_MSG_CHECKING([$PHP_CONFIG version]) version=`$PHP_CONFIG --version 2>/dev/null` case $version in - [[01234].*|5.[01234]]) + [[01234].*|5.[01234].*]) AC_MSG_RESULT([$version (not supported, need PHP >= 5.5)]) if test yes = "$with_php" ; then AC_MSG_ERROR([Only PHP >= 5.5 is supported ($PHP_CONFIG reports version $version)]) -- 2.11.4.GIT