From b8183cde3763dcdfd75ed43788aaa7c8f4676520 Mon Sep 17 00:00:00 2001 From: nicola Date: Tue, 19 Feb 2008 11:01:07 +0000 Subject: [PATCH] Do not link anything against libgnustep-gui in any circumstances - at least if we're running a gnustep-make recent enough that we can control it. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26100 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 6 ++++++ SSL/GNUmakefile | 2 ++ Source/GNUmakefile | 6 ++++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index da7f8f851..6fa3bec63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-02-19 Nicola Pero + + * Source/GNUmakefile (libgnustep-base_NEEDS_GUI): Set to NO + (libgnustep-baseadd_NEEDS_GUI): Set to NO. + * SSL/GNUmakefile (SSL_NEEDS_GUI): Set to NO. + 2008-02-17 Richard Frith-Macdonald * Source/NSDistributedNotificationCenter.m: Remove delay and change diff --git a/SSL/GNUmakefile b/SSL/GNUmakefile index 38a8fd6c7..eba59108b 100644 --- a/SSL/GNUmakefile +++ b/SSL/GNUmakefile @@ -68,6 +68,8 @@ SSL_PRINCIPAL_CLASS = GSSSLHandle SSL_BUNDLE_LIBS = $(SSLLIBS) -lgnustep-base -lobjc +SSL_NEEDS_GUI = NO + endif endif diff --git a/Source/GNUmakefile b/Source/GNUmakefile index 27361b9af..0e93dec1f 100644 --- a/Source/GNUmakefile +++ b/Source/GNUmakefile @@ -57,8 +57,8 @@ ifneq ($(base),no) LIBRARY_NAME += libgnustep-base endif -libgnustep-base_SUBPROJECTS=Additions -libgnustep-baseadd_SUBPROJECTS=Additions +libgnustep-base_SUBPROJECTS = Additions +libgnustep-baseadd_SUBPROJECTS = Additions ifeq ($(GNUSTEP_TARGET_OS), mingw32) libgnustep-base_SUBPROJECTS+=win32 @@ -435,6 +435,8 @@ libbase-resources_LOCALIZED_RESOURCE_FILES = libbase-resources_RESOURCE_DIRS = libbase-resources_RESOURCE_FILES = Info-gnustep.plist +libgnustep-base_NEEDS_GUI = NO +libgnustep-baseadd_NEEDS_GUI = NO -include Makefile.preamble