Version 1.12.0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@22653 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2006-03-14 04:13:57 +00:00
parent fcb27cb974
commit 2113ffede1
7 changed files with 32 additions and 43 deletions

View file

@ -1,7 +1,7 @@
Announcement
************
The GNUstep Makefile Package version 1.11.2 is now available.
The GNUstep Makefile Package version 1.12.0 is now available.
What is the GNUstep makefile package?
=====================================
@ -12,40 +12,15 @@ project without having to deal with the complex issues associated with
configuration, building, installation, and packaging. It also allows
the user to easily create cross-compiled binaries.
Changes in version `1.11.2'
Changes in version `1.12.0'
===========================
The `GNUstep.conf' file is now viewed as the essential determination of
the install location for GNUstep libraries, tools and other files.
During configuration, this file is read, if it exists, to determine
this information. This can still be overriden with environment and
command line options, however. See the filesystem documentation in the
GNUstep Make Documentation directory for more information.
You no longer need to source GNUstep.sh in order to compile GNUstep
programs. All that is needed is the definition of GNUSTEP_MAKEFILES.
You should also have the GNUstep system tools directory in your path.
All netbsd systems are assumed to use ELF libraries. Support for the
old static libs version of netbsd was removed.
Serveral new options were added to configure to change the location
of basic dir locations and basic configuration files. Also, the help was
greatly improved. Note that -prefix=/usr/GNUstep/System no longer
works. Please use -prefix=/usr/GNUstep or
-with-system-root=/usr/GNUstep/System.
A few more fixes for cygwin are included as well as Windows resource
rules.
Support for ObjC++ has been added. You should list the ObjC++ .mm
files in the xxx_OBJCC_FILES variable, and put extra ObjC++ flags in
xxx_OBJCCFLAGS or ADDITIONAL_OBJCCFLAGS.
Minor fixes.
Obtaining gnustep-make
======================
You can get the gstep-make-1.11.2.tar.gz distribution file at
You can get the gstep-make-1.12.0.tar.gz distribution file at
<ftp://ftp.gnustep.org/pub/gnustep/core>
Please log bug reports on the GNUstep project page

View file

@ -1,3 +1,7 @@
2006-03-13 Adam Fedor <fedor@gnu.org>
* Version 1.12.0
2006-03-09 Adam Fedor <fedor@gnu.org>
* target.make (openbsd): Add specific EXTACT_CLASS_NAMES_COMMAND.
@ -5,17 +9,18 @@
2006-03-07 Jeremy Bettis <jeremy@deadbeef.com>
* Instance/framework.make: Only copy headers if they changed
Delete framework.dll if the compile fails.
* Instance/framework.make: Only copy headers if they changed.
Delete framework.dll if the compile fails.
* Instance/subproject.make: Only copy headers if they changed
* Master/framework.make: make $(FRAMEWORK_NAME:=.all.framework.variables) depend
on $(FRAMEWORK_NAME:=.build-headers.framework.variables), sometimes the copying
of header files would happen too late.
* Master/framework.make: make
$(FRAMEWORK_NAME:=.all.framework.variables) depend on
$(FRAMEWORK_NAME:=.build-headers.framework.variables), sometimes
the copying of header files would happen too late.
* target.make: Added -Wl,--enable-auto-image-base to link command for shared
libs & bundles on mingw32.
* target.make: Added -Wl,--enable-auto-image-base to link command
for shared libs & bundles on mingw32.
2006-02-23 Adam Fedor <fedor@gnu.org>

View file

@ -9,6 +9,12 @@
The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
@end ifclear
@section Changes in version @samp{1.12.0}
Minor fixes.
@ifclear ANNOUNCE-ONLY
@section Changes in version @samp{1.11.2}
The @file{GNUstep.conf} file is now viewed as the essential
@ -39,8 +45,6 @@ Support for ObjC++ has been added. You should list the ObjC++ .mm
files in the xxx_OBJCC_FILES variable, and put extra ObjC++ flags in
xxx_OBJCCFLAGS or ADDITIONAL_OBJCCFLAGS.
@ifclear ANNOUNCE-ONLY
@section Changes in version @samp{1.11.1}
Part of the previous change was reversed. Now libobjc is still linked

2
FAQ
View file

@ -1,7 +1,7 @@
GNUstep Frequently Asked Questions with Answers
***********************************************
Last updated 20 December 2005. Please send corrections to
Last updated 13 March 2006. Please send corrections to
<gnustep-maintainer@gnu.org>. Also look at the user FAQ for more user
oriented questions.

View file

@ -1,7 +1,7 @@
GNUstep HOWTO
*************
Last Update: 20 December 2005
Last Update: 13 March 2006
This document explains how to build the different components of the
GNUstep core libraries and GNUstep Launchpad.

7
NEWS
View file

@ -1,7 +1,12 @@
NEWS
****
The currently released version is `1.11.2'.
The currently released version is `1.12.0'.
Changes in version `1.12.0'
===========================
Minor fixes.
Changes in version `1.11.2'
===========================

View file

@ -3,8 +3,8 @@
# The version number of this release.
GNUSTEP_MAKE_MAJOR_VERSION=1
GNUSTEP_MAKE_MINOR_VERSION=11
GNUSTEP_MAKE_SUBMINOR_VERSION=2
GNUSTEP_MAKE_MINOR_VERSION=12
GNUSTEP_MAKE_SUBMINOR_VERSION=0
GNUSTEP_MAKE_VERSION=${GNUSTEP_MAKE_MAJOR_VERSION}.${GNUSTEP_MAKE_MINOR_VERSION}.${GNUSTEP_MAKE_SUBMINOR_VERSION}