]> granicus.if.org Git - php/commitdiff
MFB: Fixed bug #37586 (Bumped minimum PCRE version to 6.6, needed for
authorIlia Alshanetsky <iliaa@php.net>
Sun, 28 May 2006 15:34:19 +0000 (15:34 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sun, 28 May 2006 15:34:19 +0000 (15:34 +0000)
recurssion limit support).

ext/pcre/config0.m4

index 4d442231a73563a87bcde07cd1bc5fce76e5380e..0cc7250c3ffb230482858711e2c635aad9f4e0f9 100644 (file)
@@ -44,8 +44,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)