Version 1.0.1

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@10031 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-05-29 14:27:43 +00:00
parent 41f421c7e5
commit 6fb20d5a06
5 changed files with 47 additions and 10 deletions

View file

@ -1,3 +1,7 @@
2001-05-29 Adam Fedor <fedor@gnu.org>
* Version: 1.0.1
2001-05-28 Adam Fedor <fedor@gnu.org>
* config.site: Check GNUSTEP_FLATTENED when setting bindir,libdir.

View file

@ -1,7 +1,7 @@
GNUstep HOWTO
*************
Last Update: 13 April 2001
Last Update: 29 May 2001
This document explains how to build the different components of the
GNUstep core libraries and GNUstep Launchpad.
@ -281,8 +281,8 @@ GNUstep deamons
===============
Set up your system to execute some GNUstep deamons. If you don't do
this, they will be started automatically when you run your first
GNUstep app:
this, they will be started automatically when you run your first GNUstep
app:
* gdomap - Put this in a system startup file, like `/etc/rc.local'
or `/etc/rc.d/rc.local' (customize for your system)
@ -764,8 +764,10 @@ Windows with CYGWIN (_Unstable!_)
`Extra libs needed'
Objective-C library DLL (<ftp://ftp.gnustep.org/pub/gnustep/libs>)
for shared libs. ffcall is not ported to cygwin so don't try to
use it (some invocation and DO stuff will not work).
for shared libs. It's a good idea to remove the libobjc.a that
comes with gcc (gcc -v for location) so that it isn't accidentally
found. Ffcall is not ported to cygwin so don't try to use it (some
invocation and DO stuff will not work).
`Special Instructions'
For shared libs, make sure to specify SHARED=YES explicitly when

26
INSTALL
View file

@ -9,6 +9,8 @@ libraries, read the file GNUstep-HOWTO for more complete instructions on
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.
When you configure additional libraries, make sure you use the same
configuration options as with gstep-make.
@ -69,12 +71,30 @@ Alternate Library Setup
-----------------------
You can specify compilation of alternate libraries by using the
with-library-combo option. You need to have these libraries unpacked in
a subdirectory under the gstep directory, then you can say
with-library-combo option.
./configure --with-library-combo=nx-gnu-gnu
to compile with Apple's (NexT's) runtime on Darwin, for example.
to compile with Apple's (NexT's) runtime on Darwin, for example. See
the DESIGN document for more examples of the variety of library combos.
Alternate Thread Library
------------------------
You can specify compilation of an alternate thread library from the
one that is normally used (or if GNUstep does not know what your normal
library is) with the with-thread-lib option.
./configure --with-thread-lib="-L/usr/local/lib -lgthread -lglib"
to use libgthread as your threading library. Note that the
Objective-C runtime (gnustep-objc) 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 when compiling
gnustep-objc. If you also need to set compiler flags, use the CFLAGS
variable when calling configure:
CFLAGS="-I/usr/local/include" ./configure --with-thread-lib="-L/usr/local/lib -lgthread -lglib"
Configuring the GNUstep makefile package for a cross-compile target
-------------------------------------------------------------------

13
NEWS
View file

@ -1,7 +1,18 @@
NEWS
****
The currently released version is `1.0.0'.
The currently released version is `1.0.1'.
Changes in version `1.0.1'
==========================
* Support for Java tools.
* Build GUI backend as a bundle (default).
* Remove backend part of LIBRARY_COMBO.
* Fixes to run on FreeBSD, Solaris.
Changes in version `1.0.0'
==========================

View file

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