Merge pull request #103 from mlocati/php5.5-part2

Support more extensions for PHP 5.5
pull/105/head
Michele Locati 2020-01-31 16:52:49 +01:00 committed by GitHub
commit e29befb7d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View File

@ -10,7 +10,7 @@ exif 5.5 5.6 7.0 7.1 7.2 7.3 7.4
gd 5.5 5.6 7.0 7.1 7.2 7.3 7.4
gettext 5.5 5.6 7.0 7.1 7.2 7.3 7.4
gmagick 5.6 7.0 7.1 7.2 7.3 7.4
gmp 5.6 7.0 7.1 7.2 7.3 7.4
gmp 5.5 5.6 7.0 7.1 7.2 7.3 7.4
grpc 5.6 7.0 7.1 7.2 7.3 7.4
http 5.6 7.0 7.1 7.2 7.3 7.4
igbinary 5.6 7.0 7.1 7.2 7.3 7.4
@ -70,4 +70,4 @@ xdebug 5.6 7.0 7.1 7.2 7.3 7.4
xmlrpc 5.6 7.0 7.1 7.2 7.3 7.4
xsl 5.6 7.0 7.1 7.2 7.3 7.4
yaml 5.6 7.0 7.1 7.2 7.3 7.4
zip 5.6 7.0 7.1 7.2 7.3 7.4
zip 5.5 5.6 7.0 7.1 7.2 7.3 7.4

View File

@ -829,14 +829,12 @@ installBundledModule() {
fi
;;
gmp)
case "$1" in
506)
if ! test -f /usr/include/gmp.h; then
ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h
UNNEEDED_PACKAGE_LINKS="$UNNEEDED_PACKAGE_LINKS /usr/include/gmp.h"
fi
;;
esac
if test $1 -le 506; then
if ! test -f /usr/include/gmp.h; then
ln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.h
UNNEEDED_PACKAGE_LINKS="$UNNEEDED_PACKAGE_LINKS /usr/include/gmp.h"
fi
fi
;;
imap)
case "$(getDistroVersion)" in
@ -923,7 +921,9 @@ installBundledModule() {
esac
;;
zip)
if test $1 -le 703; then
if test $1 -le 505; then
docker-php-ext-configure zip
elif test $1 -le 703; then
docker-php-ext-configure zip --with-libzip
else
docker-php-ext-configure zip --with-zip