We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ddedfd commit a38d946Copy full SHA for a38d946
install-php-extensions
@@ -2895,6 +2895,16 @@ installRemoteModule() {
2895
if test $PHP_MAJMIN_VERSION -lt 700; then
2896
installRemoteModule_version=0.75.0
2897
fi
2898
+ if test -z "$installRemoteModule_version"; then
2899
+ case "$DISTRO" in
2900
+ alpine)
2901
+ if test $DISTRO_MAJMIN_VERSION -le 312; then
2902
+ # cc is not supported due to a memcmp related bug
2903
+ installRemoteModule_version=1.1.0
2904
+ fi
2905
+ ;;
2906
+ esac
2907
2908
else
2909
installRemoteModule_version="$(resolvePeclStabilityVersion "$installRemoteModule_module" "$installRemoteModule_version")"
2910
0 commit comments