Open reinaldorauch opened 1 year ago
Adding PHP_ADDITIONAL_CONFIG_OPTIONS to allow the user add custom build config options to the script without changing default behavior.
Motivation: I had to mimic the build script to add a optional extension for password_hash(PASSWORD_ARGON2ID) usage.
password_hash(PASSWORD_ARGON2ID)
If I had this option I only needed to do PHP_ADDITIONAL_CONFIG_OPTIONS="--with-password-argon2" asdf install php latest to add that option
PHP_ADDITIONAL_CONFIG_OPTIONS="--with-password-argon2" asdf install php latest
Is this plugin abandoned? This PR is a no-brainer that would allow us to fix a lot of issues ourselves.
Adding PHP_ADDITIONAL_CONFIG_OPTIONS to allow the user add custom build config options to the script without changing default behavior.
Motivation: I had to mimic the build script to add a optional extension for
password_hash(PASSWORD_ARGON2ID)
usage.If I had this option I only needed to do
PHP_ADDITIONAL_CONFIG_OPTIONS="--with-password-argon2" asdf install php latest
to add that option