iliaa Sun May 28 15:33:56 2006 UTC Modified files: (Branch: PHP_5_2) /php-src NEWS /php-src/ext/pcre config0.m4 Log: Fixed bug #37586 (Bumped minimum PCRE version to 6.6, needed for recurssion limit support). http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.547.2.57&r2=1.2027.2.547.2.58&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.57 php-src/NEWS:1.2027.2.547.2.58 --- php-src/NEWS:1.2027.2.547.2.57 Sat May 27 18:23:48 2006 +++ php-src/NEWS Sun May 28 15:33:56 2006 @@ -48,6 +48,8 @@ - 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) http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/config0.m4?r1=1.38.2.3&r2=1.38.2.3.2.1&diff_format=u Index: php-src/ext/pcre/config0.m4 diff -u php-src/ext/pcre/config0.m4:1.38.2.3 php-src/ext/pcre/config0.m4:1.38.2.3.2.1 --- php-src/ext/pcre/config0.m4:1.38.2.3 Mon Mar 6 21:45:57 2006 +++ php-src/ext/pcre/config0.m4 Sun May 28 15:33:56 2006 @@ -1,5 +1,5 @@ dnl -dnl $Id: config0.m4,v 1.38.2.3 2006/03/06 21:45:57 andrei Exp $ +dnl $Id: config0.m4,v 1.38.2.3.2.1 2006/05/28 15:33:56 iliaa Exp $ dnl dnl By default we'll compile and link against the bundled PCRE library @@ -43,8 +43,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