From 2fae8d37c0e11fa046753f753f5be700a8b4c667 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Fri, 2 Dec 2005 02:18:54 +0000 Subject: [PATCH] Enable hash & xmlwriter by default --- NEWS | 3 +++ ext/hash/config.m4 | 2 +- ext/xmlwriter/config.m4 | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 2fd4562fa0..7e3646dd3f 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,9 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 200?, PHP 5.1.2 +- Added new extensions (Ilia,Wez) + . XmlWriter + . Hash - Moved reflection into its own extension. (Marcus) - Added reflection constants as class constants. (Johannes) - Added --enable-gcov configure option to enable C-level code coverage. diff --git a/ext/hash/config.m4 b/ext/hash/config.m4 index 9371ce04b9..7886b9e38e 100644 --- a/ext/hash/config.m4 +++ b/ext/hash/config.m4 @@ -2,7 +2,7 @@ dnl $Id$ dnl config.m4 for extension hash PHP_ARG_ENABLE(hash, whether to enable hash support, -[ --enable-hash Enable hash support]) +[ --disable-hash Disable hash support], yes) if test "$PHP_HASH" != "no"; then AC_DEFINE(HAVE_HASH_EXT,1,[Have HASH Extension]) diff --git a/ext/xmlwriter/config.m4 b/ext/xmlwriter/config.m4 index a1952b3879..54e33a7dec 100644 --- a/ext/xmlwriter/config.m4 +++ b/ext/xmlwriter/config.m4 @@ -19,8 +19,8 @@ AC_DEFUN([PHP_XMLWRITER_CHECK_VERSION],[ CPPFLAGS=$old_CPPFLAGS ]) -PHP_ARG_WITH(xmlwriter, for XMLWriter support, -[ --with-xmlwriter Include XMLWriter support.]) +PHP_ARG_ENABLE(xmlwriter, whether to enable XMLWriter support, +[ --disable-xmlwriter Disable XMLWriter support.], yes) if test "$PHP_XMLWRITER" != "no"; then -- 2.50.1