How about 'rm -f main/php3_compat.h' ? :)

    --Jani


On Mon, 21 Nov 2005, Dmitry Stogov wrote:


dmitry          Mon Nov 21 05:57:33 2005 EDT

 Modified files:
   /php-src/ext/reflection      php_reflection.c
 Log:
 Fixed "getParameters" method


http://cvs.php.net/diff.php/php-src/ext/reflection/php_reflection.c?r1=1.191&r2=1.192&ty=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.191 
php-src/ext/reflection/php_reflection.c:1.192
--- php-src/ext/reflection/php_reflection.c:1.191       Fri Nov 18 17:59:07 2005
+++ php-src/ext/reflection/php_reflection.c     Mon Nov 21 05:57:28 2005
@@ -19,7 +19,7 @@
   +----------------------------------------------------------------------+
*/

-/* $Id: php_reflection.c,v 1.191 2005/11/18 22:59:07 helly Exp $ */
+/* $Id: php_reflection.c,v 1.192 2005/11/21 10:57:28 dmitry Exp $ */

#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -38,6 +38,11 @@
#include "zend_ini.h"
#include "zend_interfaces.h"

+/* Undefine "getParameters" macro defined in "main/php3_compat.h" */
+#ifdef getParameters
+# undef getParameters
+#endif
+
/* Class entry pointers */
PHPAPI zend_class_entry *reflector_ptr;
PHPAPI zend_class_entry *reflection_exception_ptr;
@@ -4270,7 +4275,7 @@
        php_info_print_table_start();
        php_info_print_table_header(2, "Reflection", "enabled");

-       php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.191 
2005/11/18 22:59:07 helly Exp $");
+       php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.192 
2005/11/21 10:57:28 dmitry Exp $");

        php_info_print_table_end();
} /* }}} */



--
Give me your money at @ <http://pecl.php.net/wishlist.php/sniper>
Donating money may make me happier and friendlier for a limited period!
Death to all 4 letter abbreviations starting with P!

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

Reply via email to