Minor update for GC

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@4955 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1999-09-28 17:45:50 +00:00
parent 6bb7061f89
commit b6f4817ee7
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Tue Sep 28 19:05:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* brain.make: Define GS_WITH_GC and link with gc version of objc
runtime if 'gc=yes' on command line.
Fri Sep 24 19:30:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* GNUstep.csh.in: Fix so that paths are set up correctly again.

View file

@ -126,6 +126,11 @@ FND_LDFLAGS =
FND_LIBS = -lgnustep-base
FND_DEFINE = -DGNUSTEP_BASE_LIBRARY=1
GNUSTEP_DEFINE = -DGNUSTEP
# If gc=yes was passed, use the appropriate library and defines
ifeq ($(gc), yes)
OBJC_LIBS = -lobjc_gc
AUXILIARY_CPPFLAGS += -DGS_WITH_GC=1
endif
endif
ifeq ($(FOUNDATION_LIB),fd)