MFH: Fixed #45911 (Cannot disable ext/hash)

This commit is contained in:
Arnaud Le Blanc 2008-09-07 13:15:59 +00:00
parent 166ea7073a
commit dd956381e2
3 changed files with 4 additions and 3 deletions

1
NEWS
View file

@ -1,6 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 200?, PHP 5.3.0 Alpha 3
- Fixed bug #45911 (Cannot disable ext/hash). (Arnaud)
02 Sep 2008, PHP 5.3.0 Alpha 2
- Removed special treatment of "/tmp" in sessions for open_basedir.

View file

@ -1,6 +1,9 @@
dnl $Id$
dnl config.m4 for extension hash
PHP_ARG_WITH(mhash, for mhash support,
[ --with-mhash[=DIR] Include mhash support])
PHP_ARG_ENABLE(hash, whether to enable hash support,
[ --disable-hash Disable hash support], yes)

View file

@ -2,9 +2,6 @@ dnl
dnl $Id$
dnl
PHP_ARG_WITH(mhash, for mhash support,
[ --with-mhash[=DIR] Include mhash support])
if test "$PHP_MHASH" != "no"; then
PHP_NEW_EXTENSION(mhash, mhash.c, $ext_shared)
PHP_SUBST(MHASH_SHARED_LIBADD)