iliaa           Sun May 28 15:34:19 2006 UTC

  Modified files:              
    /php-src/ext/pcre   config0.m4 
  Log:
  MFB: Fixed bug #37586 (Bumped minimum PCRE version to 6.6, needed for 
  recurssion limit support). 
  
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/config0.m4?r1=1.40&r2=1.41&diff_format=u
Index: php-src/ext/pcre/config0.m4
diff -u php-src/ext/pcre/config0.m4:1.40 php-src/ext/pcre/config0.m4:1.41
--- php-src/ext/pcre/config0.m4:1.40    Wed Mar  8 00:43:28 2006
+++ php-src/ext/pcre/config0.m4 Sun May 28 15:34:19 2006
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config0.m4,v 1.40 2006/03/08 00:43:28 pajoye Exp $
+dnl $Id: config0.m4,v 1.41 2006/05/28 15:34:19 iliaa Exp $
 dnl
 
 dnl By default we'll compile and link against the bundled PCRE library
@@ -44,8 +44,8 @@
       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)

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to