]> granicus.if.org Git - php/commitdiff
Revert option rename
authorNikita Popov <nikita.ppv@gmail.com>
Wed, 12 Jun 2019 07:28:25 +0000 (09:28 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Wed, 12 Jun 2019 07:28:25 +0000 (09:28 +0200)
Let's keep this at --with-password-argon2 to avoid churn, I don't
think we have a strong motivation to rename this one.

UPGRADING
ext/standard/config.m4

index 66be319cb9b2d305bc12b33ec9c7f0b3c1fd252c..42671609cd4f04469f3464cc7275ba542884cf6b 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -608,6 +608,9 @@ The following extensions and SAPIs are affected:
 - 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.
 
index 20ff3d55c05f1b102f30cddda89f643eebc15f7d..0a46b1e3419f22c1e901c281fadd387053aef48b 100644 (file)
@@ -406,12 +406,12 @@ AC_CHECK_DECLS([arc4random_buf])
 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)