]> granicus.if.org Git - php/commitdiff
- Remove NO_RECURSE as it causes a huge performance impact. Up to 50%
authorAndi Gutmans <andi@php.net>
Fri, 2 Jan 2009 04:59:41 +0000 (04:59 +0000)
committerAndi Gutmans <andi@php.net>
Fri, 2 Jan 2009 04:59:41 +0000 (04:59 +0000)
  with Wordpress. Stack size is not really anymore of an issue than on
  Linux with FastCGI (php-cgi.exe). For ISAPI it may be an issue but we
  have other places where we may eat up stack.

ext/pcre/config.w32

index 7f50da780849b87b26481f616baf9eda5371e73c..05b3abcd1a388ddf517ca86a823a98c0ddcdf738 100644 (file)
@@ -2,7 +2,7 @@
 // vim:ft=javascript
 
 EXTENSION("pcre", "php_pcre.c", false /* never shared */,
-               "-DNO_RECURSE -Iext/pcre/pcrelib");
+               "-Iext/pcre/pcrelib");
 ADD_SOURCES("ext/pcre/pcrelib", "pcre_chartables.c pcre_ucd.c pcre_compile.c pcre_config.c pcre_exec.c pcre_fullinfo.c pcre_get.c pcre_globals.c pcre_info.c pcre_maketables.c pcre_newline.c pcre_ord2utf8.c pcre_refcount.c pcre_study.c pcre_tables.c pcre_try_flipped.c pcre_valid_utf8.c pcre_version.c pcre_xclass.c", "pcre");
 ADD_DEF_FILE("ext\\pcre\\php_pcre.def");