summaryrefslogtreecommitdiff
path: root/devel/re2c
AgeCommit message (Collapse)AuthorFilesLines
2005-02-23Add RMD160 digests.agc1-1/+2
2004-11-06Add a missing header and correct a type, to make this build on NetBSD 1.6.kristerw4-1/+59
2004-09-10Update to 0.9.3: fixes build on 2.0_BETA.wiz3-26/+8
Changes in 0.9.3: Fixes one small possible bug in the generated output. ych instead of yych is output in certain circumstances. Changes in 0.9.2: This release fixes most of the known problems with re2c and adds a few new features as well.
2004-06-12- this uses a c and c++ compiler.grant1-3/+4
- drop unneeded trailing /
2004-05-07s/malloc.h/stdlib.h/ for darwin/freebsddanw2-1/+15
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-07-29Initial import of re2c-0.9.1 into the NetBSD Packages Collection.agc4-0/+31
re2c is a preprocessor that generates C-based recognizers from regular expressions. The input to re2c consists of C/C++ source interleaved with comments of the form /*!re2c ... */ which contain scanner specifications. In the output these comments are replaced with code that, when executed, will find the next input token and then execute some user-supplied token-specific code. re2c generates parsers which are not table-based, and can be twice as fast as flex.