mirror of
https://github.com/jlengrand/asdf-php.git
synced 2026-03-10 08:01:22 +00:00
feat: make gmp flag configurable
This commit is contained in:
@@ -90,7 +90,6 @@ construct_configure_options() {
|
|||||||
--with-xmlrpc \
|
--with-xmlrpc \
|
||||||
--with-zip \
|
--with-zip \
|
||||||
--with-zlib \
|
--with-zlib \
|
||||||
--without-gmp \
|
|
||||||
--without-snmp"
|
--without-snmp"
|
||||||
|
|
||||||
if [ "$PHP_CONFIGURE_OPTIONS" = "" ]; then
|
if [ "$PHP_CONFIGURE_OPTIONS" = "" ]; then
|
||||||
@@ -99,6 +98,12 @@ construct_configure_options() {
|
|||||||
local configure_options="$PHP_CONFIGURE_OPTIONS $global_config"
|
local configure_options="$PHP_CONFIGURE_OPTIONS $global_config"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${PHP_WITH_GMP:-no}" != "no" ]; then
|
||||||
|
configure_options="$configure_options --with-gmp"
|
||||||
|
else
|
||||||
|
configure_options="$configure_options --without-gmp"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "${PHP_WITHOUT_PEAR:-no}" != "no" ]; then
|
if [ "${PHP_WITHOUT_PEAR:-no}" != "no" ]; then
|
||||||
configure_options="$configure_options --without-pear"
|
configure_options="$configure_options --without-pear"
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user