You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AC_MSG_CHECKING(PHP version)
if test -z "$PHP_MAJOR_VERSION"; then
if test ! -z "$phpincludedir"; then
PHP_MAJOR_VERSION=`grep 'PHP_MAJOR_VERSION ' $phpincludedir/main/php_version.h | sed -e 's/.*\([[0-9\.]]*\).*/\1/g' 2>/dev/null`
elif test ! -z "$PHP_CONFIG"; then
PHP_MAJOR_VERSION=`$PHP_CONFIG --version | cut -d. -f1 2>/dev/null`
else
PHP_MAJOR_VERSION=0
fi
fi
if test $PHP_MAJOR_VERSION -ge 7; then
subdir=php7
AC_MSG_RESULT([PHP 7.x])
else
AC_MSG_ERROR([PHP 7.x required for pecl-php-memcache ver 4+. Use pecl-php-memcache ver 3.x for PHP 5.x.])
fi
The text was updated successfully, but these errors were encountered:
abort configure at PHP version check
please see for patch in config9.m4:
The text was updated successfully, but these errors were encountered: