mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-18 11:41:06 +00:00
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:
parent
32c69565d9
commit
16fbbbbbea
3 changed files with 2713 additions and 1395 deletions
|
@ -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>
|
2005-12-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/NSPathUtilities.m: Add more checks/warnings about improper
|
* Source/NSPathUtilities.m: Add more checks/warnings about improper
|
||||||
|
|
|
@ -56,14 +56,14 @@ AC_ARG_ENABLE(environment-config-file,
|
||||||
[--disable-environment-config-file Disable use of the GNUSTEP_CONFIG_FILE environment variable],
|
[--disable-environment-config-file Disable use of the GNUSTEP_CONFIG_FILE environment variable],
|
||||||
ac_cv_environment_config_file=$enableval,
|
ac_cv_environment_config_file=$enableval,
|
||||||
ac_cv_environment_config_file="yes")
|
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,
|
AC_DEFINE(OPTION_NO_ENVIRONMENT, 0,
|
||||||
[Enable GNUSTEP_CONFIG_FILE environment variable])
|
[Enable GNUSTEP_CONFIG_FILE environment variable])
|
||||||
AC_MSG_RESULT([no: disabled from the command-line])
|
AC_MSG_RESULT([yes])
|
||||||
else
|
else
|
||||||
AC_DEFINE(OPTION_NO_ENVIRONMENT, 1,
|
AC_DEFINE(OPTION_NO_ENVIRONMENT, 1,
|
||||||
[Disable GNUSTEP_CONFIG_FILE environment variable])
|
[Disable GNUSTEP_CONFIG_FILE environment variable])
|
||||||
AC_MSG_RESULT([yes])
|
AC_MSG_RESULT([no: disabled from the command-line])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue