]> granicus.if.org Git - php/commitdiff
Enable hash & xmlwriter by default
authorIlia Alshanetsky <iliaa@php.net>
Fri, 2 Dec 2005 02:18:54 +0000 (02:18 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Fri, 2 Dec 2005 02:18:54 +0000 (02:18 +0000)
NEWS
ext/hash/config.m4
ext/xmlwriter/config.m4

diff --git a/NEWS b/NEWS
index 2fd4562fa06e37c8f7f4cf68f05a154931d56f2d..7e3646dd3f720fdfdbad9c6d34d6d8dd746aa3f3 100644 (file)
--- 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.
index 9371ce04b9ee4341dc2974ebd5041a17baf85f03..7886b9e38eab4f7a6a47685976b5383cd7710617 100644 (file)
@@ -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])
index a1952b38797ed71a62cb79c326f42b09c6c3c326..54e33a7decd46d2f0be5bb32cc776b42941f35b4 100644 (file)
@@ -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