Skip to content

Commit dd95638

Browse files
committed
MFH: Fixed #45911 (Cannot disable ext/hash)
1 parent 166ea70 commit dd95638

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

NEWS

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? ??? 200?, PHP 5.3.0 Alpha 3
4+
- Fixed bug #45911 (Cannot disable ext/hash). (Arnaud)
45

56
02 Sep 2008, PHP 5.3.0 Alpha 2
67
- Removed special treatment of "/tmp" in sessions for open_basedir.

ext/hash/config.m4

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
dnl $Id$
22
dnl config.m4 for extension hash
33

4+
PHP_ARG_WITH(mhash, for mhash support,
5+
[ --with-mhash[=DIR] Include mhash support])
6+
47
PHP_ARG_ENABLE(hash, whether to enable hash support,
58
[ --disable-hash Disable hash support], yes)
69

ext/mhash/config.m4

-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ dnl
22
dnl $Id$
33
dnl
44

5-
PHP_ARG_WITH(mhash, for mhash support,
6-
[ --with-mhash[=DIR] Include mhash support])
7-
85
if test "$PHP_MHASH" != "no"; then
96
PHP_NEW_EXTENSION(mhash, mhash.c, $ext_shared)
107
PHP_SUBST(MHASH_SHARED_LIBADD)

0 commit comments

Comments
 (0)