mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Attempt to link in ObjC2 compatibility code if we have an older runtime.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29670 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7cc69dfaae
commit
073595b9e9
11 changed files with 1246 additions and 863 deletions
|
@ -65,8 +65,13 @@ ifneq ($(base),no)
|
|||
LIBRARY_NAME += libgnustep-base
|
||||
endif
|
||||
|
||||
libgnustep-base_SUBPROJECTS = Additions
|
||||
libgnustep-baseadd_SUBPROJECTS = Additions
|
||||
ifeq ($(OBJC2RUNTIME),no)
|
||||
libgnustep-base_SUBPROJECTS = ObjectiveC2
|
||||
libgnustep-baseadd_SUBPROJECTS += Additions
|
||||
endif
|
||||
|
||||
libgnustep-base_SUBPROJECTS += Additions
|
||||
libgnustep-baseadd_SUBPROJECTS += Additions
|
||||
|
||||
ifeq ($(GNUSTEP_TARGET_OS), mingw32)
|
||||
libgnustep-base_SUBPROJECTS+=win32
|
||||
|
@ -473,7 +478,10 @@ libgnustep-baseadd_NEEDS_GUI = NO
|
|||
# build Additions as a subproject, causing concurrency issues). If it
|
||||
# can be guaranteed that they'll never be built together, this could
|
||||
# be removed.
|
||||
SUBPROJECTS = Additions
|
||||
ifeq ($(OBJC2RUNTIME),no)
|
||||
SUBPROJECTS = ObjectiveC2
|
||||
endif
|
||||
SUBPROJECTS += Additions
|
||||
|
||||
-include Makefile.preamble
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue