scottmac Tue, 17 May 2011 22:24:44 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=311164
Log:
ZEND_THREAD_SAFE and ZEND_DEBUG_BUILD are not meant to be case insensitive
Changed paths:
U php/php-src/branches/PHP_5_4/Zend/zend_constants.c
U php/php-src/trunk/Zend/zend_constants.c
Modified: php/php-src/branches/PHP_5_4/Zend/zend_constants.c
===================================================================
--- php/php-src/branches/PHP_5_4/Zend/zend_constants.c 2011-05-17 22:17:16 UTC
(rev 311163)
+++ php/php-src/branches/PHP_5_4/Zend/zend_constants.c 2011-05-17 22:24:44 UTC
(rev 311164)
@@ -141,7 +141,7 @@
c.value.type = IS_NULL;
zend_register_constant(&c TSRMLS_CC);
- c.flags = CONST_PERSISTENT;
+ c.flags = CONST_PERSISTENT | CONST_CS;
c.name = zend_strndup(ZEND_STRL("ZEND_THREAD_SAFE"));
c.name_len = sizeof("ZEND_THREAD_SAFE");
Modified: php/php-src/trunk/Zend/zend_constants.c
===================================================================
--- php/php-src/trunk/Zend/zend_constants.c 2011-05-17 22:17:16 UTC (rev
311163)
+++ php/php-src/trunk/Zend/zend_constants.c 2011-05-17 22:24:44 UTC (rev
311164)
@@ -141,7 +141,7 @@
c.value.type = IS_NULL;
zend_register_constant(&c TSRMLS_CC);
- c.flags = CONST_PERSISTENT;
+ c.flags = CONST_PERSISTENT | CONST_CS;
c.name = zend_strndup(ZEND_STRL("ZEND_THREAD_SAFE"));
c.name_len = sizeof("ZEND_THREAD_SAFE");
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php