From c6fc399a73647a97662de0903cd37867b3f3ea47 Mon Sep 17 00:00:00 2001 From: theraven Date: Thu, 26 May 2011 14:25:15 +0000 Subject: [PATCH] Enable GC support by default. You can still turn it off with boehm_gc=no. --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 7139885..63eadc9 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -80,10 +80,10 @@ ifeq ($(low_memory), yes) libobjc_CPPFLAGS += -D__OBJC_LOW_MEMORY__ endif -ifeq ($(boehm_gc), yes) +ifneq ($(boehm_gc), no) libobjc_C_FILES += gc_boehm.c libobjc_LIBRARIES_DEPEND_UPON += -lgc-threaded -libobjc_OBJCFLAGS += -fobjc-gc +#libobjc_OBJCFLAGS += -fobjc-gc libobjc_CPPFLAGS += -DENABLE_GC endif