summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-05-28 15:33:56 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-05-28 15:33:56 +0000
commit1ad21d9b1231cbc86fda5d857c5390461b9beff7 (patch)
tree323f4470ee990b65effb845c5ba67d6b7ad61875
parent5f63b5c4eefc20e55f13f06b6126fd769f088fe2 (diff)
downloadphp-git-1ad21d9b1231cbc86fda5d857c5390461b9beff7.tar.gz
Fixed bug #37586 (Bumped minimum PCRE version to 6.6, needed for recurssion
limit support).
-rw-r--r--NEWS2
-rw-r--r--ext/pcre/config0.m44
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index d7ea3af133..3196d83d35 100644
--- a/NEWS
+++ b/NEWS
@@ -48,6 +48,8 @@ PHP NEWS
- Fixed handling of extremely long paths inside tempnam() function. (Ilia)
- Fixed bug #37614 (Class name lowercased in error message). (Johannes)
- Fixed bug #37587 (var without attribute causes segfault). (Marcus)
+- Fixed bug #37586 (Bumped minimum PCRE version to 6.6, needed for recurssion
+ limit support). (Ilia)
- Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). (Ilia)
- Fixed bug #37565 (Using reflection::export with simplexml causing a crash).
(Marcus)
diff --git a/ext/pcre/config0.m4 b/ext/pcre/config0.m4
index 3ae740d682..4ab39efce2 100644
--- a/ext/pcre/config0.m4
+++ b/ext/pcre/config0.m4
@@ -43,8 +43,8 @@ if test "$PHP_PCRE_REGEX" != "no"; then
pcre_minor="$pcre_minor"0
fi
pcre_version=$pcre_major$pcre_minor
- if test "$pcre_version" -lt 208; then
- AC_MSG_ERROR([The PCRE extension requires PCRE library version >= 2.08])
+ if test "$pcre_version" -lt 660; then
+ AC_MSG_ERROR([The PCRE extension requires PCRE library version >= 6.6])
fi
PHP_ADD_LIBRARY_WITH_PATH(pcre, $PCRE_LIBDIR, PCRE_SHARED_LIBADD)