Version 1.5.0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@14381 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-08-31 03:00:02 +00:00
parent b496bffb85
commit 50177940d7
8 changed files with 30 additions and 39 deletions

View file

@ -1,7 +1,7 @@
Announcement
************
The GNUstep Makefile Package version 1.4.0 is now available.
The GNUstep Makefile Package version 1.5.0 is now available.
What is the GNUstep makefile package?
=====================================
@ -12,29 +12,15 @@ write a 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.4.0'
Changes in version `1.5.0'
==========================
Since the last stable release, the package has gone through an
extensive reorganization to break up each sub-make into two separate
components. This allows for much simplified code and lots of code
sharing between components. As a side effect, it also increased the
speed of the code by at least a factor of 2.
* Update Darwin/GNU gcc and Irix targets
* Use gnugc-gnu-gnu library combo for garbage collecting version.
* Add verbosity levels. Use make messages=yes for full messages.
* Instructions for building on Windows with MSYS
* Changed Apps directory to Applications
* Add NetBSD Elf support
Obtaining gnustep-make
======================
You can get the gstep-make-1.4.0.tar.gz distribution file at
You can get the gstep-make-1.5.0.tar.gz distribution file at
<ftp://ftp.gnustep.org/pub/gnustep/core>
Please send bug reports to <bug-gnustep@gnu.org>.

View file

@ -1,3 +1,7 @@
2002-08-30 Adam Fedor <fedor@gnu.org>
* Version: 1.5.0
2002-08-26 Adam Fedor <fedor@gnu.org>
* configure.ac: Typo in CPPFLAGS (Reported by Chris Vetter).

View file

@ -9,6 +9,14 @@
The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}.
@end ifclear
@section Changes in version @samp{1.5.0}
@itemize @bullet
@item Add NetBSD Elf support
@end itemize
@ifclear ANNOUNCE-ONLY
@section Changes in version @samp{1.4.0}
@itemize @bullet
@ -26,8 +34,6 @@ This is a first prerelease version for 1.4.
@item Add verbosity levels. Use make messages=yes for full messages.
@end itemize
@ifclear ANNOUNCE-ONLY
@section Changes in version @samp{1.3.3}
@itemize @bullet

2
FAQ
View file

@ -1,7 +1,7 @@
GNUstep Frequently Asked Questions with Answers
***********************************************
Last updated 26 July 2002. Please send corrections to
Last updated 30 August 2002. 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: 26 July 2002
Last Update: 30 August 2002
This document explains how to build the different components of the
GNUstep core libraries and GNUstep Launchpad.
@ -933,14 +933,3 @@ to update, for example, go into 'base', and type:
You don't have to re-checkout after you have the source, just update!
Acknowledgements
****************
Authors: Adam Fedor <fedor@gnu.org>,
Pascal Forget <pascal@wsc.com>,
Ovidiu Predescu <ovidiu@net-community.com>,
Camille Troillard <tuscland@wanadoo.fr>
Richard Frith-MacDonald <richard@brainstorm.co.uk>
This file is part of GNUstep.

View file

@ -10,8 +10,9 @@ how to install the entire GNUstep package (including this package).
GNUstep-HOWTO comes with this distribution.
This should be the first GNUstep package you install. After
installing this package, install ffcall and any other libraries that
GNUstep may need (see the GNUstep-HOWTO). Then install gnustep-base.
installing this package, install ffcall or libffi and any other
libraries that GNUstep may need (see the GNUstep-HOWTO). Then install
gnustep-base.
When you configure additional libraries, make sure you use the same
configuration options as with gstep-make.
@ -93,10 +94,10 @@ library is) with the with-thread-lib option.
Objective-C runtime (libobjc) must have a compatible threading backend
in order to use this threading library and you must set the appropriate
threading backend by hand in the GNUmakefile if you are using
gnustep-objc. If you also need to set compiler flags, use the CFLAGS
gnustep-objc. If you also need to set compiler flags, use the CPPFLAGS
variable when calling configure:
CFLAGS="-I/usr/local/include" ./configure --with-thread-lib="-L/usr/local/lib -lgthread -lglib"
CPPFLAGS="-I/usr/local/include" ./configure --with-thread-lib="-L/usr/local/lib -lgthread -lglib"
Warnings for deprecated #import
-------------------------------

7
NEWS
View file

@ -1,7 +1,12 @@
NEWS
****
The currently released version is `1.4.0'.
The currently released version is `1.5.0'.
Changes in version `1.5.0'
==========================
* Add NetBSD Elf support
Changes in version `1.4.0'
==========================

View file

@ -3,7 +3,7 @@
# The version number of this release.
GNUSTEP_MAKE_MAJOR_VERSION=1
GNUSTEP_MAKE_MINOR_VERSION=4
GNUSTEP_MAKE_MINOR_VERSION=5
GNUSTEP_MAKE_SUBMINOR_VERSION=0
GNUSTEP_MAKE_VERSION=${GNUSTEP_MAKE_MAJOR_VERSION}.${GNUSTEP_MAKE_MINOR_VERSION}.${GNUSTEP_MAKE_SUBMINOR_VERSION}