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:
Richard Frith-Macdonald 2005-10-28 10:58:32 +00:00
parent 17d96e4ad5
commit f03f367dba
3 changed files with 8 additions and 0 deletions

View file

@ -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
View file

@ -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

View file

@ -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])