Skip to content

Commit e9cf14e

Browse files
committed
add note in UPGRADING
1 parent 1b0081e commit e9cf14e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

UPGRADING

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,8 @@ PHP 8.1 UPGRADE NOTES
594594
. --with-password-argon2 now uses pkg-config to detect libargon2. As such,
595595
an alternative libargon2 location should now be specified using
596596
PKG_CONFIG_PATH.
597+
. --with-external-libcrypt now allows to use system libcrypt/libxcrypt
598+
instead in PHP own implementation.
597599

598600
========================================
599601
10. New Global Constants

ext/standard/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ if test "$ac_cv_crypt_blowfish" = "no" || test "$ac_cv_crypt_des" = "no" || test
287287
AC_MSG_ERROR([Cannot use external libcrypt as some algo are missing])
288288
fi
289289
else
290-
AC_DEFINE_UNQUOTED(PHP_USE_PHP_CRYPT_R, 0, [Whether PHP has to use its own crypt_r for blowfish, des and ext des])
290+
AC_DEFINE_UNQUOTED(PHP_USE_PHP_CRYPT_R, 0, [Whether PHP has to use its own crypt_r])
291291
fi
292292

293293
dnl

0 commit comments

Comments
 (0)