Skip to content

Commit

Permalink
Fix installing smbclient on PHP 5.5/5.6 (#1020)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati authored Nov 28, 2024
1 parent c4493e6 commit d2a2883
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions install-php-extensions
Original file line number Diff line number Diff line change
Expand Up @@ -3893,6 +3893,13 @@ installRemoteModule() {
fi
fi
;;
smbclient)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 506; then
installRemoteModule_version=1.1.1
fi
fi
;;
snappy)
if test -z "$installRemoteModule_path"; then
if test -z "$installRemoteModule_version"; then
Expand Down

0 comments on commit d2a2883

Please sign in to comment.