File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 556
556
PHP_ARG_WITH(password-argon2, for Argon2 support,
557
557
[ --with-password-argon2[ =DIR] Include Argon2 support in password_*. DIR is the Argon2 shared library path] ])
558
558
559
- if test "$PHP_ARGON2 " != "no"; then
559
+ if test "$PHP_PASSWORD_ARGON2 " != "no"; then
560
560
AC_MSG_CHECKING ( [ for Argon2 library] )
561
- for i in $PHP_ARGON2 /usr /usr/local ; do
561
+ for i in $PHP_PASSWORD_ARGON2 /usr /usr/local ; do
562
562
if test -r $i/include/argon2.h; then
563
563
ARGON2_DIR=$i;
564
564
AC_MSG_RESULT ( found in $i )
Original file line number Diff line number Diff line change 3
3
4
4
ARG_WITH ( "password-argon2" , "Argon2 support" , "no" ) ;
5
5
6
- if ( PHP_ARGON2 != "no" ) {
7
- if ( CHECK_LIB ( "Argon2Ref.lib" , null , PHP_ARGON2 )
6
+ if ( PHP_PASSWORD_ARGON2 != "no" ) {
7
+ if ( CHECK_LIB ( "Argon2Ref.lib" , null , PHP_PASSWORD_ARGON2 )
8
8
&& CHECK_HEADER_ADD_INCLUDE ( "argon2.h" , "CFLAGS" ) ) {
9
9
AC_DEFINE ( 'HAVE_ARGON2LIB' , 1 ) ;
10
10
} else {
You can’t perform that action at this time.
0 commit comments