iliaa           Thu Dec  1 21:18:54 2005 EDT

  Modified files:              (Branch: PHP_5_1)
    /php-src    NEWS 
    /php-src/ext/xmlwriter      config.m4 
    /php-src/ext/hash   config.m4 
  Log:
  Enable hash & xmlwriter by default
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.2027.2.268&r2=1.2027.2.269&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.268 php-src/NEWS:1.2027.2.269
--- php-src/NEWS:1.2027.2.268   Thu Dec  1 15:01:33 2005
+++ php-src/NEWS        Thu Dec  1 21:18:51 2005
@@ -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.
http://cvs.php.net/diff.php/php-src/ext/xmlwriter/config.m4?r1=1.4.2.2&r2=1.4.2.3&ty=u
Index: php-src/ext/xmlwriter/config.m4
diff -u php-src/ext/xmlwriter/config.m4:1.4.2.2 
php-src/ext/xmlwriter/config.m4:1.4.2.3
--- php-src/ext/xmlwriter/config.m4:1.4.2.2     Thu Dec  1 21:05:24 2005
+++ php-src/ext/xmlwriter/config.m4     Thu Dec  1 21:18:54 2005
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.4.2.2 2005/12/02 02:05:24 iliaa Exp $
+dnl $Id: config.m4,v 1.4.2.3 2005/12/02 02:18:54 iliaa Exp $
 dnl
 
 AC_DEFUN([PHP_XMLWRITER_CHECK_VERSION],[
@@ -19,8 +19,8 @@
   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
 
http://cvs.php.net/diff.php/php-src/ext/hash/config.m4?r1=1.10.2.2&r2=1.10.2.3&ty=u
Index: php-src/ext/hash/config.m4
diff -u php-src/ext/hash/config.m4:1.10.2.2 php-src/ext/hash/config.m4:1.10.2.3
--- php-src/ext/hash/config.m4:1.10.2.2 Thu Dec  1 20:59:44 2005
+++ php-src/ext/hash/config.m4  Thu Dec  1 21:18:54 2005
@@ -1,8 +1,8 @@
-dnl $Id: config.m4,v 1.10.2.2 2005/12/02 01:59:44 iliaa Exp $
+dnl $Id: config.m4,v 1.10.2.3 2005/12/02 02:18:54 iliaa Exp $
 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])

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to