diff options
author | Antony Dovgal <tony2001@php.net> | 2006-12-04 18:01:24 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-12-04 18:01:24 +0000 |
commit | 6aa5ed0d9c434fc9975ef8e55d4e60a1b9bdfdd2 (patch) | |
tree | 597f86802527550a78a12cd9d233bd8eb63c23b9 /ext/pcre | |
parent | 10a8b1a152720579c3837d2924792e733b13542a (diff) | |
download | php-git-6aa5ed0d9c434fc9975ef8e55d4e60a1b9bdfdd2.tar.gz |
partly fix #39724
ext/spl has a soft dependcy from ext/pcre (not ext/pcre-regex)
Diffstat (limited to 'ext/pcre')
-rw-r--r-- | ext/pcre/config0.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/pcre/config0.m4 b/ext/pcre/config0.m4 index 14c5953f19..98ecd32890 100644 --- a/ext/pcre/config0.m4 +++ b/ext/pcre/config0.m4 @@ -53,6 +53,8 @@ if test "$PHP_PCRE_REGEX" != "no"; then AC_DEFINE(HAVE_PCRE, 1, [ ]) PHP_ADD_INCLUDE($PCRE_INCDIR) PHP_NEW_EXTENSION(pcre, php_pcre.c, $ext_shared,,-DEXPORT= -DNEWLINE=10 -DSUPPORT_UTF8 -DSUPPORT_UCP -DLINK_SIZE=2 -DPOSIX_MALLOC_THRESHOLD=10 -DMATCH_LIMIT=10000000 -DMATCH_LIMIT_RECURSION=10000000 -DMAX_NAME_SIZE=32 -DMAX_NAME_COUNT=10000 -DMAX_DUPLENGTH=30000) + PHP_SUBST(PCRE_SHARED_LIBADD) fi - PHP_SUBST(PCRE_SHARED_LIBADD) +else + PHP_PCRE=no fi |