summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-05-07 17:47:02 +0000
committerWez Furlong <wez@php.net>2004-05-07 17:47:02 +0000
commitce05cea7eef8e66a576c017eddeedf3afb380575 (patch)
treeb07a338a7c93179cbdacd160d6d3e247d9c4facb
parentbfcc12ef78988dabb04acf7ce36f3ba436cc7bbe (diff)
downloadphp-git-ce05cea7eef8e66a576c017eddeedf3afb380575.tar.gz
Fix Bug #28317: Avoid recursion in libpcre on windows platform.
-rw-r--r--ext/pcre/config.w322
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/config.w32 b/ext/pcre/config.w32
index 88ac189782..602920e3f0 100644
--- a/ext/pcre/config.w32
+++ b/ext/pcre/config.w32
@@ -5,7 +5,7 @@ ARG_WITH("pcre-regex", "Perl Compatible Regular Expressions", "yes");
if (PHP_PCRE_REGEX == "yes") {
EXTENSION("pcre", "php_pcre.c", PHP_PCRE_REGEX_SHARED,
- "-DSUPPORT_UTF8 -DLINK_SIZE=2 -DPOSIX_MALLOC_THRESHOLD=10 -Iext/pcre/pcrelib");
+ "-DSUPPORT_UTF8 -DLINK_SIZE=2 -DPOSIX_MALLOC_THRESHOLD=10 -Iext/pcre/pcrelibi -DNO_RECURSE");
ADD_SOURCES("ext/pcre/pcrelib", "maketables.c get.c study.c pcre.c", "pcre");
AC_DEFINE('HAVE_BUNDLED_PCRE', 1, 'Using bundled PCRE library');