Add support for gearman on PHP 8.4 (#1043)

* Add support for gearman on PHP 8.4

Signed-off-by: Romain Gautier <mail@romain.sh>

* Fix installing gearman on PHP 7.0

---------

Signed-off-by: Romain Gautier <mail@romain.sh>
Co-authored-by: Romain Gautier <mail@romain.sh>
master
Michele Locati 2025-01-07 22:53:01 +01:00 committed by GitHub
parent fc6f0eac7a
commit 3d4ce54d7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,7 @@ exif 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
ffi 7.4 8.0 8.1 8.2 8.3 8.4 ffi 7.4 8.0 8.1 8.2 8.3 8.4
ftp 8.2 8.3 8.4 ftp 8.2 8.3 8.4
gd 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4 gd 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
gearman 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 gearman 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
geoip 5.5 5.6 7.0 7.1 7.2 7.3 7.4 geoip 5.5 5.6 7.0 7.1 7.2 7.3 7.4
geos 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4 geos 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
geospatial 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4 geospatial 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4

View File

@ -3189,6 +3189,8 @@ installRemoteModule() {
if test -z "$installRemoteModule_version"; then if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 506; then if test $PHP_MAJMIN_VERSION -le 506; then
installRemoteModule_version=1.1.2 installRemoteModule_version=1.1.2
elif test $PHP_MAJMIN_VERSION -le 700; then
installRemoteModule_version=2.1.3
fi fi
fi fi
case "$DISTRO" in case "$DISTRO" in