Fix GD and ZIP configuration with PHP 7.4.0

Test: gd, zip
pull/54/head
Michele Locati 2019-12-06 17:12:05 +01:00
parent e6288d0a1d
commit 16eeec2dec
No known key found for this signature in database
GPG Key ID: 98B7CE2E7234E28B
2 changed files with 15 additions and 9 deletions

View File

@ -327,12 +327,14 @@ installBundledModule () {
printf '### INSTALLING BUNDLED MODULE %s ###\n' "${2}"
case "${2}" in
gd)
if test $1 -lt 700; then
if test $1 -le 506; then
docker-php-ext-configure gd --with-gd --with-vpx-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-xpm-dir --with-freetype-dir --enable-gd-native-ttf
elif test $1 -lt 702; then
elif test $1 -le 701; then
docker-php-ext-configure gd --with-gd --with-webp-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-xpm-dir --with-freetype-dir --enable-gd-native-ttf
else
elif test $1 -le 703; then
docker-php-ext-configure gd --with-gd --with-webp-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-xpm-dir --with-freetype-dir
else
docker-php-ext-configure gd --enable-gd --with-webp --with-jpeg --with-xpm --with-freetype
fi
;;
gmp)
@ -386,7 +388,11 @@ installBundledModule () {
cmake ..
make install
cd -
docker-php-ext-configure zip --with-libzip
if test $1 -le 703; then
docker-php-ext-configure zip --with-libzip
else
docker-php-ext-configure zip --with-zip
fi
;;
esac
docker-php-ext-install -j$(nproc) "${2}"

View File

@ -27,11 +27,11 @@ fi
# Outputs:
# the full docker image ID
getExtensionImage () {
if test "${2}" = '7.4'; then
getExtensionImage_version='7.4.0RC3'
else
getExtensionImage_version="${2}"
fi
case "${2}" in
*)
getExtensionImage_version="${2}"
;;
esac
getExtensionImage_result="php:${getExtensionImage_version}-cli"
getExtensionImage_reqs="${TRAVIS_BUILD_DIR}/data/special-requirements"
if test -f "${getExtensionImage_reqs}"; then