Diff for /embedaddon/pcre/README between versions 1.1.1.4 and 1.1.1.5

version 1.1.1.4, 2013/07/22 08:25:55 version 1.1.1.5, 2014/06/15 19:46:03
Line 9  from: Line 9  from:
   ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-xxx.zip    ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-xxx.zip
   
 There is a mailing list for discussion about the development of PCRE at  There is a mailing list for discussion about the development of PCRE at
   pcre-dev@exim.org. You can access the archives and subscribe or manage your
   subscription here:
   
  pcre-dev@exim.org   https://lists.exim.org/mailman/listinfo/pcre-dev
   
 Please read the NEWS file if you are upgrading from a previous release.  Please read the NEWS file if you are upgrading from a previous release.
 The contents of this README file are:  The contents of this README file are:
Line 112  contributions provided support for compiling PCRE on v Line 114  contributions provided support for compiling PCRE on v
 Windows (I myself do not use Windows). Nowadays there is more Windows support  Windows (I myself do not use Windows). Nowadays there is more Windows support
 in the standard distribution, so these contibutions have been archived.  in the standard distribution, so these contibutions have been archived.
   
   A PCRE user maintains downloadable Windows binaries of the pcregrep and
   pcretest programs here:
   
     http://www.rexegg.com/pcregrep-pcretest.html
   
   
 Building PCRE on non-Unix-like systems  Building PCRE on non-Unix-like systems
 --------------------------------------  --------------------------------------
   
Line 262  library. They are also documented in the pcrebuild man Line 269  library. They are also documented in the pcrebuild man
   
   on the "configure" command.    on the "configure" command.
   
. PCRE has a counter that can be set to limit the amount of resources it uses.. PCRE has a counter that limits the depth of nesting of parentheses in a
  If the limit is exceeded during a match, the match fails. The default is ten  pattern. This limits the amount of system stack that a pattern uses when it
  million. You can change the default by setting, for example,  is compiled. The default is 250, but you can change it by setting, for
   example,
   
     --with-parens-nest-limit=500
   
   . PCRE has a counter that can be set to limit the amount of resources it uses
     when matching a pattern. If the limit is exceeded during a match, the match
     fails. The default is ten million. You can change the default by setting, for
     example,
   
   --with-match-limit=500000    --with-match-limit=500000
   
   on the "configure" command. This is just the default; individual calls to    on the "configure" command. This is just the default; individual calls to
Line 344  library. They are also documented in the pcrebuild man Line 359  library. They are also documented in the pcrebuild man
   report is generated by running "make coverage". If ccache is installed on    report is generated by running "make coverage". If ccache is installed on
   your system, it must be disabled when building PCRE for coverage reporting.    your system, it must be disabled when building PCRE for coverage reporting.
   You can do this by setting the environment variable CCACHE_DISABLE=1 before    You can do this by setting the environment variable CCACHE_DISABLE=1 before
  running "make" to build PCRE.  running "make" to build PCRE. There is more information about coverage
   reporting in the "pcrebuild" documentation.
   
 . The pcregrep program currently supports only 8-bit data files, and so  . The pcregrep program currently supports only 8-bit data files, and so
   requires the 8-bit PCRE library. It is possible to compile pcregrep to use    requires the 8-bit PCRE library. It is possible to compile pcregrep to use
Line 971  pcre_xxx, one with the name pcre16_xx, and a third wit Line 987  pcre_xxx, one with the name pcre16_xx, and a third wit
 Philip Hazel  Philip Hazel
 Email local part: ph10  Email local part: ph10
 Email domain: cam.ac.uk  Email domain: cam.ac.uk
Last updated: 28 April 2013Last updated: 05 November 2013

Removed from v.1.1.1.4  
changed lines
  Added in v.1.1.1.5


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>