Fix installing excimer on PHP 7.1 (#570)

The issue has already been fixed by
aed4ff8243
but we need to wait for a new version

Test: excimer
pull/571/head 1.5.12
Michele Locati 2022-05-05 18:47:46 +02:00 committed by GitHub
parent 4baf5b3ce8
commit 0197661f85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -2509,6 +2509,13 @@ installRemoteModule() {
# event must be loaded after sockets
installRemoteModule_ini_basename="xx-php-ext-$installRemoteModule_module"
;;
excimer)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 701; then
installRemoteModule_version=1.0.2
fi
fi
;;
gearman)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 506; then