Install in /etc/GNUstep/GNUstep.conf on all systems except for Apple with apple-apple-apple

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@26538 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2008-05-18 18:13:34 +00:00
parent da605ce097
commit 96ef618a99
5 changed files with 38 additions and 6 deletions

View file

@ -1,3 +1,15 @@
2008-05-18 Nicola Pero <nicola.pero@meta-innovation.com>
* configure.ac: Install GNUstep.conf in /etc/GNUstep/GNUstep.conf
on OpenBSD, FreeBSD and NetBSD. Packagers are free to install the
configuration file wherever it best suits them; but for simplicity
and consistency if gnustep-make is compiled from source and
nothing else is specified, we default to /etc/GNUstep/GNUstep.conf
on all systems.
* configure: Regenerated.
* Documentation/releasenotes.texi: Describe change.
* RELEASENOTES: Regenerated.
2008-03-30 Nicola Pero <nicola.pero@meta-innovation.com>
* clean_os.sh: Support new versions of Darwin, and future ones as

View file

@ -4,6 +4,19 @@ The release notes include descriptions of API changes, behavior
changes and other information that might help developers and users
migrate to using a newer version of the make system.
@section Version 2.0.6
@table @samp
@item default location of GNUstep.conf on BSD systems
This has been changed to /etc/GNUstep/GNUstep.conf to be consistent
across all Unix systems (except for Apple Mac OS X where it is
installed in /Library/GNUstep/GNUstep.conf). To install in a
different location, use the --with-config-file=PATH option, as in
--with-config-file=/usr/pkg/etc/GNUstep.conf.
@end table
@section Version 2.0.5
@table @samp

View file

@ -5,7 +5,18 @@ The release notes include descriptions of API changes, behavior changes
and other information that might help developers and users migrate to
using a newer version of the make system.
1.1 Version 2.0.5
1.1 Version 2.0.6
=================
`default location of GNUstep.conf on BSD systems'
This has been changed to /etc/GNUstep/GNUstep.conf to be consistent
across all Unix systems (except for Apple Mac OS X where it is
installed in /Library/GNUstep/GNUstep.conf). To install in a
different location, use the -with-config-file=PATH option, as in
-with-config-file=/usr/pkg/etc/GNUstep.conf.
1.2 Version 2.0.5
=================
`default filesystem layout on apple-apple-apple'
@ -50,7 +61,7 @@ using a newer version of the make system.
variable (see above).
1.2 Version 2.0.0
1.3 Version 2.0.0
=================
Version 2.0.0 is a new major release of gnustep-make which includes a

2
configure vendored
View file

@ -4450,8 +4450,6 @@ fi
if test "$GNUSTEP_CONFIG_FILE" = "" -o "$GNUSTEP_CONFIG_FILE" = "no"; then
case "$target_os" in
freebsd* | openbsd* ) GNUSTEP_CONFIG_FILE=/usr/etc/GNUstep.conf ;;
netbsd* ) GNUSTEP_CONFIG_FILE=/usr/pkg/etc/GNUstep.conf ;;
darwin*) GNUSTEP_CONFIG_FILE=/Library/GNUstep/GNUstep.conf ;;
*) GNUSTEP_CONFIG_FILE=/etc/GNUstep/GNUstep.conf ;;
esac

View file

@ -401,8 +401,6 @@ AC_ARG_WITH(config-file,[
GNUSTEP_CONFIG_FILE="$withval",)
if test "$GNUSTEP_CONFIG_FILE" = "" -o "$GNUSTEP_CONFIG_FILE" = "no"; then
case "$target_os" in
freebsd* | openbsd* ) GNUSTEP_CONFIG_FILE=/usr/etc/GNUstep.conf ;;
netbsd* ) GNUSTEP_CONFIG_FILE=/usr/pkg/etc/GNUstep.conf ;;
darwin*) GNUSTEP_CONFIG_FILE=/Library/GNUstep/GNUstep.conf ;;
*) GNUSTEP_CONFIG_FILE=/etc/GNUstep/GNUstep.conf ;;
esac