We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b846f8 commit 2a60543Copy full SHA for 2a60543
ext/hash/config.m4
@@ -4,6 +4,7 @@ PHP_ARG_WITH([mhash],
4
[Include mhash support])])
5
6
if test "$PHP_MHASH" != "no"; then
7
+ AC_MSG_WARN([The --with-mhash option and mhash* functions are deprecated as of PHP 8.1.0])
8
AC_DEFINE(PHP_MHASH_BC, 1, [ ])
9
fi
10
ext/hash/config.w32
@@ -3,6 +3,7 @@
3
ARG_WITH('mhash', 'mhash support (BC via hash)', 'no');
if (PHP_MHASH != 'no') {
+ WARNING("mhash* functions are deprecated as of PHP 8.1.0");
AC_DEFINE('PHP_MHASH_BC', 1);
}
0 commit comments