Support ds on PHP 8.1, fix DS on PHP 7.2- (#481)

* Support ds on PHP 8.1

* Fix installing DS on PHP 7.2-
pull/483/head
Michele Locati 2021-12-14 11:52:42 +01:00 committed by GitHub
parent 412d93afc2
commit 6544305702
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -10,7 +10,7 @@ cmark 7.0 7.1 7.2 7.3 7.4
csv 7.3 7.4 8.0 8.1 csv 7.3 7.4 8.0 8.1
dba 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 dba 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1
decimal 7.0 7.1 7.2 7.3 7.4 8.0 8.1 decimal 7.0 7.1 7.2 7.3 7.4 8.0 8.1
ds 7.0 7.1 7.2 7.3 7.4 8.0 ds 7.0 7.1 7.2 7.3 7.4 8.0 8.1
enchant 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 enchant 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1
ev 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 ev 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1
event 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 event 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1

View File

@ -2078,6 +2078,13 @@ installRemoteModule() {
;; ;;
esac esac
;; ;;
ds)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 702; then
installRemoteModule_version=1.3.0
fi
fi
;;
event) event)
if test -z "$installRemoteModule_version" || test $(compareVersions "$installRemoteModule_version" 2.4.0) -ge 0; then if test -z "$installRemoteModule_version" || test $(compareVersions "$installRemoteModule_version" 2.4.0) -ge 0; then
# Enable internal debugging in Event # Enable internal debugging in Event