From 1bfc9aec053404a54bf50af3e405f0900f9b510a Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Tue, 10 Dec 2024 15:03:45 +0100 Subject: [PATCH] Fix installing smbclient on PHP from 7.0 to 7.3 Test: smbclient --- install-php-extensions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install-php-extensions b/install-php-extensions index 7975f9e2..518032e7 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -3897,6 +3897,8 @@ installRemoteModule() { if test -z "$installRemoteModule_version"; then if test $PHP_MAJMIN_VERSION -le 506; then installRemoteModule_version=1.1.1 + elif test $PHP_MAJMIN_VERSION -le 703; then + installRemoteModule_version=1.1.2 fi fi ;;