summaryrefslogtreecommitdiff
path: root/devel/re2c
AgeCommit message (Collapse)AuthorFilesLines
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
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.