felipe                                   Mon, 12 Jul 2010 12:59:28 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=301185

Log:
- Defined NDEBUG to avoid checks for tracefile, and added -l flag

Changed paths:
    U   php/php-src/branches/LEMON/Zend/zend_language_parser.y
    U   php/php-src/branches/LEMON/configure.in
    U   php/php-src/branches/LEMON/win32/build/config.w32

Modified: php/php-src/branches/LEMON/Zend/zend_language_parser.y
===================================================================
--- php/php-src/branches/LEMON/Zend/zend_language_parser.y      2010-07-12 
12:42:11 UTC (rev 301184)
+++ php/php-src/branches/LEMON/Zend/zend_language_parser.y      2010-07-12 
12:59:28 UTC (rev 301185)
@@ -29,6 +29,8 @@
 #include "zend_globals.h"
 #include "zend_API.h"
 #include "zend_constants.h"
+
+#define NDEBUG
 }

 %name zend_lang_parse

Modified: php/php-src/branches/LEMON/configure.in
===================================================================
--- php/php-src/branches/LEMON/configure.in     2010-07-12 12:42:11 UTC (rev 
301184)
+++ php/php-src/branches/LEMON/configure.in     2010-07-12 12:59:28 UTC (rev 
301185)
@@ -1054,10 +1054,10 @@
 if test "$ZEND_MAINTAINER_ZTS" = "yes"; then
   AC_DEFINE(ZTS,1,[ ])
   PHP_THREAD_SAFETY=yes
-  LEMON_FLAGS="-q D=ZTS"
+  LEMON_FLAGS="-l -q D=ZTS"
 else
   PHP_THREAD_SAFETY=no
-  LEMON_FLAGS="-q"
+  LEMON_FLAGS="-l -q"
 fi
 PHP_SUBST(LEMON_FLAGS)


Modified: php/php-src/branches/LEMON/win32/build/config.w32
===================================================================
--- php/php-src/branches/LEMON/win32/build/config.w32   2010-07-12 12:42:11 UTC 
(rev 301184)
+++ php/php-src/branches/LEMON/win32/build/config.w32   2010-07-12 12:59:28 UTC 
(rev 301185)
@@ -204,9 +204,9 @@

 if (PHP_ZTS == "yes") {
        ADD_FLAG("CFLAGS", "/D ZTS=1");
-       DEFINE("LEMON_FLAGS", "-c -q D=ZTS");
+       DEFINE("LEMON_FLAGS", "-l -q D=ZTS");
 } else {
-       DEFINE("LEMON_FLAGS", "-c -q");
+       DEFINE("LEMON_FLAGS", "-l -q");
 }

 DEFINE("PHP_ZTS_ARCHIVE_POSTFIX", PHP_ZTS == "yes" ? '' : "-nts");

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

Reply via email to