diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-04-05 12:47:13 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-04-05 12:47:13 +0000 |
commit | 83a45c624cd521e790e1ea80d1d0dc24a1b2ac44 (patch) | |
tree | 254f57bf174b935d46cfc7fe74e0c5bab4f77006 /devel/ccmalloc/files/patch-Makefile.in | |
parent | Update to 1.1.0. The latest version of ImageMagick from ports is (diff) |
port of ccmalloc
This is port of ccmalloc, memory leak detector for C/C++.
PR: ports/36336
Submitted by: Jure Menart <jure@kom.org>
Notes
Notes:
svn path=/head/; revision=78300
Diffstat (limited to 'devel/ccmalloc/files/patch-Makefile.in')
-rw-r--r-- | devel/ccmalloc/files/patch-Makefile.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/devel/ccmalloc/files/patch-Makefile.in b/devel/ccmalloc/files/patch-Makefile.in new file mode 100644 index 000000000000..e1fd0c2dd765 --- /dev/null +++ b/devel/ccmalloc/files/patch-Makefile.in @@ -0,0 +1,18 @@ +--- Makefile.in.orig Wed Jan 30 15:27:10 2002 ++++ Makefile.in Mon Mar 18 17:39:49 2002 +@@ -3,6 +3,7 @@ + COMPILERS=@COMPILERS@ + TARGETS=lib/libccmalloc.a @TARGETS@ bin/ccmalloc + PREFIX=@PREFIX@ ++OPSYS=@OPSYS@ + + #--------------------------------------------------------------------------# + +@@ -43,6 +44,7 @@ + -e 's,@''PREFIX@,$(PREFIX),g' \ + -e 's,@''COMPILERS@,"$(COMPILERS)",g' \ + -e 's,@''VERSION@,@VERSION@,g' \ ++ -e 's,@''OPSYS@,@OPSYS@,g' \ + src/ccmalloc.in > $@ + chmod 755 $@ + |