diff options
author | jdp <jdp@FreeBSD.org> | 2000-03-12 01:50:47 +0800 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 2000-03-12 01:50:47 +0800 |
commit | 5ba557d1ab4e8c64cbd406d09f19e526ff20b081 (patch) | |
tree | 7577339001e17242058119dbfcd7c4bc0abf7656 /devel/boehm-gc/files | |
parent | bdc7e28f8a3d2fe5ee4f3a32e2b7f3a46fecc129 (diff) | |
download | freebsd-ports-gnome-5ba557d1ab4e8c64cbd406d09f19e526ff20b081.tar.gz freebsd-ports-gnome-5ba557d1ab4e8c64cbd406d09f19e526ff20b081.tar.zst freebsd-ports-gnome-5ba557d1ab4e8c64cbd406d09f19e526ff20b081.zip |
Add "-DREDIRECT_MALLOC=GC_malloc" to the compiler options so the
library can be used as a drop-in replacement for malloc. This has
always been the case for this port, but the previous upgrade dropped
it unintentionally.
Diffstat (limited to 'devel/boehm-gc/files')
-rw-r--r-- | devel/boehm-gc/files/patch-aa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/boehm-gc/files/patch-aa b/devel/boehm-gc/files/patch-aa index 2a418517811e..81c78c6e21ed 100644 --- a/devel/boehm-gc/files/patch-aa +++ b/devel/boehm-gc/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.orig Sat Sep 11 01:49:18 1999 -+++ Makefile Tue Oct 12 17:27:25 1999 +--- Makefile.orig Fri Sep 10 16:49:18 1999 ++++ Makefile Sat Mar 11 09:44:56 2000 @@ -8,15 +8,42 @@ # c++ interface to gc.a # cord/de - builds dumb editor based on cords. @@ -20,7 +20,7 @@ +# to fill anyone's log with leak messages! - MMCG + +GCFLAGS= -DNO_SIGNALS -DALL_INTERIOR_POINTERS -DATOMIC_UNCOLLECTABLE \ -+ -DNO_EXECUTE_PERMISSION -DSILENT ++ -DNO_EXECUTE_PERMISSION -DSILENT -DREDIRECT_MALLOC=GC_malloc +CFLAGS+= $(GCFLAGS) + +LEAKFLAGS=$(CFLAGS) -DFIND_LEAK |