Merge pull request #229 from mlocati/amqp-fix
Fix installing AMQP on non-Debian PHP 5.5 imagespull/230/head 1.1.18
commit
fd2d0b9417
|
@ -1351,14 +1351,14 @@ installPECLModule() {
|
||||||
installPECLModule_cppflags=''
|
installPECLModule_cppflags=''
|
||||||
case "$installPECLModule_module" in
|
case "$installPECLModule_module" in
|
||||||
amqp)
|
amqp)
|
||||||
case "$DISTRO_VERSION" in
|
if test -z "$installPECLModule_version"; then
|
||||||
debian@8)
|
if test "$DISTRO_VERSION" = debian@8; then
|
||||||
if test -z "$installPECLModule_version"; then
|
# in Debian Jessie we have librammitmq version 0.5.2
|
||||||
# in Debian Jessie we have librammitmq version 0.5.2
|
installPECLModule_version=1.9.3
|
||||||
installPECLModule_version=1.9.3
|
elif test $PHP_MAJMIN_VERSION -le 505; then
|
||||||
fi
|
installPECLModule_version=1.9.4
|
||||||
;;
|
fi
|
||||||
esac
|
fi
|
||||||
;;
|
;;
|
||||||
apcu)
|
apcu)
|
||||||
if test -z "$installPECLModule_version"; then
|
if test -z "$installPECLModule_version"; then
|
||||||
|
|
Loading…
Reference in New Issue