aboutsummaryrefslogtreecommitdiffstats
path: root/devel/lemon
Commit message (Collapse)AuthorAgeFilesLines
* SHA256ifyedwin2006-01-221-0/+2
| | | | Approved by: krion@
* Make all versions of FreeBSD happy by using NO_MAN and NOMAN.seanc2005-03-161-1/+1
| | | | Submitted by: kris
* Hrm... NO_MAN isn't supported in 4.X. Use NOMAN for now even though itseanc2005-03-151-1/+1
| | | | | | | incurs a warning on 6.X: at least it compiles now. Submitted by: vs Noticed by: too many to count
* Update lemon to 1.33 (a very fast, thread safe C parser generator). Newseanc2005-03-052-10/+5
| | | | | | | grammar features and performance optimizations. http://www.sqlite.org/cvstrac/rlog?f=sqlite/tool/lempar.c http://www.sqlite.org/cvstrac/rlog?f=sqlite/tool/lemon.c
* Update lemon to incorporate the CLI options found in the previous version,seanc2003-10-152-3/+4
| | | | before updating to the version found in SQLite.
* Update lemon to the latest version in the SQLite repo. Please let me knowseanc2003-10-143-220/+5
| | | | | | | if there are any grammar problems with this newer version. Assume maintainership. Approved by: maintainer
* Switch from the no-longer-supported-by-gcc varargs.h to stdarg.h. Themi2003-07-151-10/+44
| | | | | | sqlite itself switched in May, apparently. databases/libgda needs to switch too, or, better yet, use the sqlite port instead of building its own.
* Clear moonlight beckons.ade2003-03-072-1/+1
| | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
* Change ``-f bsd.prog.mk'' to ``-f /usr/share/mk/bsd.prog.mk''... :-\mi2002-09-041-1/+1
| | | | Submitted by: Tony Maher
* Make this into a more general tool. Allow to specify the names of themi2001-06-082-16/+95
| | | | | | output files and the location of the template on command line. (Submitting the patches to the author)
* The Lemon program is an LALR(1) parser generator. It takes a contextmi2001-06-056-0/+159
free grammar and converts it into a subroutine that will parse a file using that grammar. Lemon is similar to the much more famous programs "YACC" and "BISON". But lemon is not compatible with either yacc or bison. There are several important differences: . Lemon using a different grammar syntax which is less prone to programming errors. . Lemon generates a parser that is faster than Yacc or Bison parsers (according to the author). . The parser generated by Lemon is both re-entrant and thread-safe. . Lemon includes the concept of a non-terminal destructor, which makes it much easier to write a parser that does not leak memory. WWW: http://www.hwaci.com/sw/lemon/