diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2010-09-14 11:16:24 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2010-09-14 11:16:24 +0000 |
commit | 359e4257acbbe18b8bd0c35e78030ef29db08f6d (patch) | |
tree | 5159f27eb6e8ac52f8cb457c6f114de212bfbf59 /devel/coccinelle/files/patch-pycaml-Makefile | |
parent | Deprecate net/Sockets-devel, it's older than net/Sockets and unmaintained, i (diff) |
Coccinelle is a program matching and transformation engine which provides the
language SmPL (Semantic Patch Language) for specifying desired matches and
transformations in C code. Coccinelle was initially targeted towards performing
collateral evolutions in Linux. Such evolutions comprise the changes that are
needed in client code in response to evolutions in library APIs, and may
include modifications such as renaming a function, adding a function argument
whose value is somehow context-dependent, and reorganizing a data
structure. Beyond collateral evolutions, Coccinelle is successfully used (by us
and others) for finding and fixing bugs in systems code.
WWW: http://coccinelle.lip6.fr/
PR: ports/150472
Submitted by: Andriy Gapon <avg@icyb.net.ua>
Notes
Notes:
svn path=/head/; revision=261140
Diffstat (limited to 'devel/coccinelle/files/patch-pycaml-Makefile')
-rw-r--r-- | devel/coccinelle/files/patch-pycaml-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/coccinelle/files/patch-pycaml-Makefile b/devel/coccinelle/files/patch-pycaml-Makefile new file mode 100644 index 000000000000..773243339a64 --- /dev/null +++ b/devel/coccinelle/files/patch-pycaml-Makefile @@ -0,0 +1,11 @@ +--- pycaml/Makefile.orig 2009-04-06 12:59:15.000000000 +0200 ++++ pycaml/Makefile 2009-04-06 12:59:20.000000000 +0200 +@@ -3,7 +3,7 @@ + OCAMLMAKEFILE = OCamlMakefile + PY_PREFIX = $(shell python getprefix.py) + PY_VERSION = $(shell python getversion.py) +-CLIBS = python$(PY_VERSION) pthread dl util m c ++CLIBS = python$(PY_VERSION) pthread util m c + + SOURCES = pycaml.ml pycaml_ml.c + RESULT = pycaml |