Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2019-06-21 21:38:36 +0300
committerMichael Grunder <michael.grunder@gmail.com>2019-06-21 21:55:13 +0300
commita537df8321d4a42f5af7d4cd61c72d3b0e5a01cf (patch)
treebfb65cc5439732521faf4c05e570aa8c643d0dc9 /config.m4
parentaa110feb8206aa514889d588c03b71f44ec70b76 (diff)
Bikeshedding error message
Diffstat (limited to 'config.m4')
-rw-r--r--config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/config.m4 b/config.m4
index 24fa554d..512fc615 100644
--- a/config.m4
+++ b/config.m4
@@ -139,7 +139,7 @@ if test "$PHP_REDIS" != "no"; then
AC_MSG_CHECKING([for php msgpack version >= 2.0.3])
MSGPACK_VERSION=`$EGREP "define PHP_MSGPACK_VERSION" $msgpack_inc_path/ext/msgpack/php_msgpack.h | $SED -e 's/[[^0-9\.]]//g'`
if test `echo $MSGPACK_VERSION | $SED -e 's/[[^0-9]]/ /g' | $AWK '{print $1*1000 + $2*100 + $3*10 + $4}'` -lt 2030; then
- AC_MSG_ERROR([version $MSGPACK_VERSION is too old])
+ AC_MSG_ERROR([version >= 2.0.3 required])
else
AC_MSG_RESULT([yes])
fi