Let's keep this at --with-password-argon2 to avoid churn, I don't
think we have a strong motivation to rename this one.
- SQLite3:
. --with-sqlite3 no longer accepts a directory.
+- Standard:
+ . --with-password-argon2 no longer accepts a directory.
+
- XSL:
. --with-xsl no longer accepts a directory.
dnl
dnl Check for argon2
dnl
-PHP_ARG_WITH([argon2],
+PHP_ARG_WITH([password-argon2],
[whether to build with Argon2 support],
- [AS_HELP_STRING([--with-argon2],
+ [AS_HELP_STRING([--with-password-argon2],
[Build with Argon2 support])])
-if test "$PHP_ARGON2" != "no"; then
+if test "$PHP_PASSWORD_ARGON2" != "no"; then
PKG_CHECK_MODULES([ARGON2], [libargon2])
PHP_EVAL_INCLINE($ARGON2_CFLAGS)