From 6bb9fe9e5a5998b7c0422b8c1ae829ecb226589b Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Tue, 2 Mar 2021 14:11:30 +0100 Subject: [PATCH] Use official ssh2 release on PHP 8.0 Test: ssh2 --- install-php-extensions | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/install-php-extensions b/install-php-extensions index 045e275..8d21a3d 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -1914,17 +1914,8 @@ installRemoteModule() { if test -z "$installRemoteModule_version"; then if test $PHP_MAJMIN_VERSION -le 506; then installRemoteModule_version=0.13 - elif test $PHP_MAJMIN_VERSION -le 704; then - installRemoteModule_version=beta else - installRemoteModule_src="$(getPackageSource https://codeload.github.com/php/pecl-networking-ssh2/tar.gz/93265d71bdeb23350e8320126c7949ed791310df)" - cd -- "$installRemoteModule_src" - phpize - ./configure - make -j$(getCompilationProcessorCount) - make install - cd - >/dev/null - installRemoteModule_manuallyInstalled=1 + installRemoteModule_version=beta fi fi ;;