parent
2a68a3b764
commit
51f905db88
|
@ -4126,12 +4126,6 @@ installRemoteModule() {
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
if test $PHP_MAJMIN_VERSION -ge 800; then
|
|
||||||
# see https://github.com/swoole/swoole-src/issues/5365
|
|
||||||
installRemoteModule_curl=no
|
|
||||||
else
|
|
||||||
installRemoteModule_curl=yes
|
|
||||||
fi
|
|
||||||
if test $PHP_THREADSAFE -eq 1; then
|
if test $PHP_THREADSAFE -eq 1; then
|
||||||
installRemoteModule_zts=yes
|
installRemoteModule_zts=yes
|
||||||
else
|
else
|
||||||
|
@ -4139,6 +4133,7 @@ installRemoteModule() {
|
||||||
fi
|
fi
|
||||||
installRemoteModule_sqlite=yes
|
installRemoteModule_sqlite=yes
|
||||||
installRemoteModule_iouring=no
|
installRemoteModule_iouring=no
|
||||||
|
installRemoteModule_curl=yes
|
||||||
case "$DISTRO" in
|
case "$DISTRO" in
|
||||||
alpine)
|
alpine)
|
||||||
if test $DISTRO_MAJMIN_VERSION -lt 317; then
|
if test $DISTRO_MAJMIN_VERSION -lt 317; then
|
||||||
|
@ -4157,6 +4152,10 @@ installRemoteModule() {
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
debian)
|
debian)
|
||||||
|
if test $PHP_MAJMIN_VERSION -ge 800; then
|
||||||
|
# see https://github.com/swoole/swoole-src/issues/5365
|
||||||
|
installRemoteModule_curl=no
|
||||||
|
fi
|
||||||
if test $DISTRO_MAJMIN_VERSION -lt 1200; then
|
if test $DISTRO_MAJMIN_VERSION -lt 1200; then
|
||||||
# we need sqlite3 >= 3.7.7
|
# we need sqlite3 >= 3.7.7
|
||||||
installRemoteModule_sqlite=no
|
installRemoteModule_sqlite=no
|
||||||
|
|
Loading…
Reference in New Issue