From cd68ec33460f560ac6e8ec33a7122bccb903f1a7 Mon Sep 17 00:00:00 2001 From: Christoph Date: Sun, 18 Feb 2018 01:21:06 +0100 Subject: [PATCH] Install xdebug version 2.5.5 in case of php main version 5.6. --- mod_php_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mod_php_install.sh b/mod_php_install.sh index 8a5034e..d4de218 100755 --- a/mod_php_install.sh +++ b/mod_php_install.sh @@ -2684,6 +2684,8 @@ fi echononl "\tInstall xdebug via pecl.." if [[ "$PHP_MAIN_VERSION" = "5.4" ]] ; then printf "\n" | ${PREFIX_PHP}/bin/pecl install xdebug-2.2.7 > /dev/null 2>&1 +elif [[ "$PHP_MAIN_VERSION" = "5.6" ]]; then + printf "\n" | ${PREFIX_PHP}/bin/pecl install xdebug-2.5.5 > /dev/null 2>&1 else printf "\n" | ${PREFIX_PHP}/bin/pecl install xdebug > /dev/null 2>&1 fi