mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Set a reasonable default location for GNUstep.conf on mingw32 systems.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@21893 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
17d96e4ad5
commit
f03f367dba
3 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-10-28 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* configure.ac: Set up a sensible default location for GNUstep.conf
|
||||
on mingw32 systems (C:\GNUstep\GNUstep.conf).
|
||||
* configure: ditto
|
||||
|
||||
2005-10-27 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* configure.ac: Standardized the format of option help, and also
|
||||
|
|
1
configure
vendored
1
configure
vendored
|
@ -3232,6 +3232,7 @@ else
|
|||
case "$target_os" in
|
||||
freebsd* | openbsd* ) GNUSTEP_CONFIG_FILE=/usr/etc/GNUstep.conf ;;
|
||||
netbsd* ) GNUSTEP_CONFIG_FILE=/usr/pkg/etc/GNUstep.conf ;;
|
||||
mingw32* ) GNUSTEP_CONFIG_FILE=C:\\GNUstep\\GNUstep.conf ;;
|
||||
*) GNUSTEP_CONFIG_FILE=/etc/GNUstep/GNUstep.conf;;
|
||||
esac
|
||||
fi
|
||||
|
|
|
@ -197,6 +197,7 @@ AC_ARG_WITH(config-file,[
|
|||
case "$target_os" in
|
||||
freebsd* | openbsd* ) GNUSTEP_CONFIG_FILE=/usr/etc/GNUstep.conf ;;
|
||||
netbsd* ) GNUSTEP_CONFIG_FILE=/usr/pkg/etc/GNUstep.conf ;;
|
||||
mingw32* ) GNUSTEP_CONFIG_FILE=C:\\GNUstep\\GNUstep.conf ;;
|
||||
*) GNUSTEP_CONFIG_FILE=/etc/GNUstep/GNUstep.conf;;
|
||||
esac
|
||||
fi])
|
||||
|
|
Loading…
Reference in a new issue