Don't include ../Headers on non-gnu

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17494 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2003-08-18 20:43:23 +00:00
parent db304032af
commit 9265e93659
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2003-08-18 Adam Fedor <fedor@gnu.org>
* Model/GNUmakefile (ADDITIONAL_INCLUDE_DIRS): Don't include
../Headers on non-gnu targets.
2003-08-17 Adam Fedor <fedor@gnu.org>
* Source/NSTableView.m ([NSTableView -textDidBeginEditing:]): Fix leak

View file

@ -66,13 +66,13 @@ ADDITIONAL_CPPFLAGS += $(RUNTIME_DEFINE) $(GUI_DEFINE) $(BACKEND_DEFINE)
ADDITIONAL_LIB_DIRS += -L$(GNUSTEP_OBJ_DIR)
ifeq ($(GUI_LIB), gnu)
ADDITIONAL_LIB_DIRS += -L../Source/$(GNUSTEP_OBJ_DIR)
ADDITIONAL_INCLUDE_DIRS = -I../Headers/Additions -I../Headers
else
ADDITIONAL_INCLUDE_DIRS = -I../Headers/Additions
endif
ADDITIONAL_OBJC_FLAGS += $(BACKEND_DEFINE)
# Additional include directories the compiler should search
ADDITIONAL_INCLUDE_DIRS = -I../Headers/Additions -I../Headers
# What are the libraries this library depends upon. This is needed for some
# systems where building a shared library requires to pass to the linker
# all the libraries the target library depends upon.