aboutsummaryrefslogtreecommitdiff
path: root/devel/re2
Commit message (Collapse)AuthorAgeFilesLines
* Respect CXX (fixes build with clang)Julien Laffaye2011-06-201-0/+3
| | | | | | | Approved by: bapt (mentor) Notes: svn path=/head/; revision=275925
* Update my e-mail to my FreeBSD one.Julien Laffaye2011-06-081-1/+1
| | | | | | | | | While I am here, use GOOGLE_CODE instead of ${MASTER_SITE_GOOGLE_CODE} Approved by: bapt (mentor) Notes: svn path=/head/; revision=275235
* - Update to 20110522Baptiste Daroussin2011-05-232-5/+6
| | | | | | | | PR: ports/157271 Submitted by: Julien Laffaye <kimelto@gmail.com> Notes: svn path=/head/; revision=274515
* RE2 is a fast, safe, thread-friendly alternative to backtracking regularBaptiste Daroussin2010-09-014-0/+46
expression engines like those used in PCRE, Perl, and Python. It is a C++ library. RE2 uses automata theory to guarantee that regular expression searches run in time linear in the size of the input. RE2 implements memory limits, so that searches can be constrained to a fixed amount of memory. RE2 is engineered to use a small fixed C++ stack footprint no matter what inputs or regular expressions it must process; thus RE2 is useful in multithreaded environments where thread stacks cannot grow arbitrarily large. WWW: http://code.google.com/p/re2/ PR: ports/150185 Submitted by: Julien Laffaye <kimelto at gmail.com> Notes: svn path=/head/; revision=260391