aboutsummaryrefslogtreecommitdiff
path: root/devel/ocaml-cppo
Commit message (Collapse)AuthorAgeFilesLines
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | devel part 3) Notes: svn path=/head/; revision=327724
* - Remove USE_GZIP (it's default)Alex Kozlov2013-04-171-6/+1
| | | | | | | | | | | - Remove USE_GO (unused after r296612) - Convert Makefile headers to new style Approved by: portmgr (bapt) Feature safe: yes Notes: svn path=/head/; revision=316012
* Cppo is an equivalent of the C preprocessor targeted at the OCaml languageEitan Adler2011-12-264-0/+41
The main purpose of cppo is to provide a lightweight tool for simple macro substitution (#define) and file inclusion (#include) for the occasional case when this is useful in OCaml. Processing specific sections of files by calling external programs is also possible via #ext directives. The implementation of cppo relies on the standard library of OCaml and on the standard parsing tools Ocamllex and Ocamlyacc, which contribute to the robustness of cppo across OCaml versions. WWW: http://martin.jambon.free.fr/cppo.html PR: ports/162749 Submitted by: <michael.grunewald@laposte.net> Notes: svn path=/head/; revision=288052