mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Fixed bug where test-application.make did not link against GUI by default
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@26797 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
87a837ed04
commit
fcece14876
4 changed files with 21 additions and 1 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2008-07-21 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
Fixed bug reported by Marko Riedel <markoriedelde@yahoo.de> where
|
||||
test-applications are not linked against the gui library by
|
||||
default.
|
||||
* Instance/test-application.make (NEEDS_GUI): Set to 'yes'.
|
||||
* Instance/test-tool.make (NEEDS_GUI): Set to 'no'.
|
||||
* Instance/tool.make (NEEDS_GUI): Use 'no' instead of 'NO' for
|
||||
consistency.
|
||||
|
||||
2008-07-17 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Documentation/machines.texi: Update
|
||||
|
|
|
@ -17,6 +17,11 @@
|
|||
# If not, write to the Free Software Foundation,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
# Applications usually link against a gui library (if available).
|
||||
ifeq ($(NEEDS_GUI),)
|
||||
NEEDS_GUI = yes
|
||||
endif
|
||||
|
||||
ifeq ($(RULES_MAKE_LOADED),)
|
||||
include $(GNUSTEP_MAKEFILES)/rules.make
|
||||
endif
|
||||
|
|
|
@ -17,6 +17,11 @@
|
|||
# If not, write to the Free Software Foundation,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
# Tools don't link against gui by default
|
||||
ifeq ($(NEEDS_GUI),)
|
||||
NEEDS_GUI = no
|
||||
endif
|
||||
|
||||
ifeq ($(RULES_MAKE_LOADED),)
|
||||
include $(GNUSTEP_MAKEFILES)/rules.make
|
||||
endif
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
# Tools don't link against gui by default
|
||||
ifeq ($(NEEDS_GUI),)
|
||||
NEEDS_GUI = NO
|
||||
NEEDS_GUI = no
|
||||
endif
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue