Changes:
2012-01-04: Fixed native code debug build target by updating OCamlMakefile.
Thanks to Stephane Glondu <glondu@debian.org> for the patch!
2011-12-15: Fixed a Windows portability bug in the C-bindings.
Thanks to Evgenii Lepikhin <johnlepikhin@gmail.com> for the patch!
2011-11-09: Updated OCamlMakefile to fix linking order.
2011-01-16: Added support for limit recursion flag.
Thanks to Delphin Lecucq <Delphin.LECUCQ@3ds.com> for the patch!
2010-10-31: Improved Windows support with MSVC.
Thanks to Sylvain Le Gall <sylvain@le-gall.net> for the patch!
2010-04-01: Added new function:
* regexp_or
2009-06-20: Fixed bug in configuration functions that could lead to a segfault.
Thanks to Gerd Stolpmann <gerd@gerd-stolpmann.de> for the patch!
2009-05-07: Changed API wrt. error handling and thus made a major release.
Improved behavior in the presence of recursion limit errors.
Thanks to Martin Jambon <martinj@mylife.com> for this patch!
2009-04-23: Fixed build problem on MinGW.
Thanks to Gerd Stolpmann <gerd@gerd-stolpmann.de> for the patch!
2009-03-08: Fixed build problem on Mac OS X with macports.
Thanks to Ralph Douglass <ralph@grayskies.net> for the
initial patch.
Update OCamlMakefile.
Improved Godi-distribution.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
Patch privided by PR 39348.
Changes:
2008-05-06: Fixed build problem with newer versions of PCRE.
2008-03-14: Synced with Jane Street tree.
2008-01-25: Added new function:
* names
This function returns the names of all named substrings in a
regular expression.
Thanks to Benedikt Grundmann <bgrundmann@janestcapital.com>
for the patch!
2007-07-12: Improved build scripts for Windows.
Thanks to Christophe Troestler
<Christophe.Troestler@umh.ac.be> for the patch!
2007-07-12: Improved documentation for Win32 builds, and added some build
scripts usable on Windows.
Thanks to Christophe Troestler
<Christophe.Troestler@umh.ac.be> for this contribution!
2007-04-23: callback_exn -> caml_callback_exn.
Updated OCamlMakefile.
This OCaml-library interfaces the PCRE (Perl-compatible regular
expressions) library which is written in C. it can be used for matching
regular expressions which are written in "Perl"-style.