--- code/trunk/ChangeLog 2007/09/14 10:06:05 245 +++ code/trunk/ChangeLog 2007/09/20 10:19:16 260 @@ -1,7 +1,7 @@ ChangeLog for PCRE ------------------ -Version 7.4 10-Sep-07 +Version 7.4 21-Sep-07 --------------------- 1. Change 7.3/28 was implemented for classes by looking at the bitmap. This @@ -32,8 +32,9 @@ compatibility, even though it is no longer used. 7. Added macro for snprintf to pcrecpp_unittest.cc and also for strtoll and - strtoull to pcrecpp.cc to select the available functions in WIN32 (where - different names are used). + strtoull to pcrecpp.cc to select the available functions in WIN32 when the + windows.h file is present (where different names are used). [This was + reversed later after testing - see 16 below.] 8. Changed all #include to #include "config.h". There were also some further cases that I changed to "pcre.h". @@ -54,12 +55,22 @@ After changing table of Posix names 22 Thanks to the folks working on Gregex for glib for this insight. - + 11. --disable-stack-for-recursion caused compiling to fail unless -enable- - unicode-properties was also set. - -12. Updated the RunTest script to miss out tests that don't work if \R is - defaulted to ANYCRLF. + unicode-properties was also set. + +12. Updated the tests so that they work when \R is defaulted to ANYCRLF. + +13. Added checks for ANY and ANYCRLF to pcrecpp.cc where it previously + checked only for CRLF. + +14. Added casts to pcretest.c to avoid compiler warnings. + +15. Added Craig's patch to various pcrecpp modules to avoid compiler warnings. + +16. Added Craig's patch to remove the WINDOWS_H tests, that were not working, + and instead check for _strtoi64 explicitly, and avoid the use of snprintf() + entirely. This removes changes made in 7 above. Version 7.3 28-Aug-07