Skip to content

Commit

Permalink
Require msgpack > 2.0.3
Browse files Browse the repository at this point in the history
Although the msgpack version numbers appear to be x.y.z[-dev], I'm
testing as if it were w.x.y.z[-dev] in case this ever changes.  Right
now the $4 is the same as adding 0.
  • Loading branch information
michael-grunder committed Jun 21, 2019
1 parent 235a27e commit 6973478
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,13 @@ if test "$PHP_REDIS" != "no"; then

AC_MSG_CHECKING([for redis msgpack support])
if test "$PHP_REDIS_MSGPACK" != "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'`
AC_MSG_RESULT([$MSGPACK_VERSION])
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([php msgpack version >= 2.0.3 required])
fi

AC_MSG_RESULT([enabled])
AC_DEFINE(HAVE_REDIS_MSGPACK,1,[Whether redis msgpack serializer is enabled])
MSGPACK_INCLUDES="-I$msgpack_inc_path"
Expand Down

0 comments on commit 6973478

Please sign in to comment.