Fix configu bug

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22130 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2005-12-02 07:18:23 +00:00
parent 6a7de776c0
commit de08e2375f
3 changed files with 2713 additions and 1395 deletions

View file

@ -1,3 +1,9 @@
2005-12-02 Richard Frith-Macdonald <rfm@gnu.org>
* configure.ac: Fix bug configuring whether GNUstep.conf can be
set in the environment
* configure: regenerate
2005-12-01 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSPathUtilities.m: Add more checks/warnings about improper

4096
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -56,14 +56,14 @@ AC_ARG_ENABLE(environment-config-file,
[--disable-environment-config-file Disable use of the GNUSTEP_CONFIG_FILE environment variable],
ac_cv_environment_config_file=$enableval,
ac_cv_environment_config_file="yes")
if test "$ac_cv_environment_config_file" = "no"; then
if test "$ac_cv_environment_config_file" = "yes"; then
AC_DEFINE(OPTION_NO_ENVIRONMENT, 0,
[Enable GNUSTEP_CONFIG_FILE environment variable])
AC_MSG_RESULT([no: disabled from the command-line])
AC_MSG_RESULT([yes])
else
AC_DEFINE(OPTION_NO_ENVIRONMENT, 1,
[Disable GNUSTEP_CONFIG_FILE environment variable])
AC_MSG_RESULT([yes])
AC_MSG_RESULT([no: disabled from the command-line])
fi
#