autofs-5.0.8 - fix external env configure From: Ian Kent Macro lookup can also resolve names in the external environment. The configure script disables this by default but the configure help implies it is enabled by default. --- CHANGELOG | 1 + configure | 2 +- configure.in | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) --- autofs-5.0.7.orig/CHANGELOG +++ autofs-5.0.7/CHANGELOG @@ -92,6 +92,7 @@ - fix macro_addvar() and move init to main thread. - change walk_tree() to take ap. - add negative cache lookup to hesiod lookup. +- fix external env configure. 25/07/2012 autofs-5.0.7 ======================= --- autofs-5.0.7.orig/configure +++ autofs-5.0.7/configure @@ -5608,7 +5608,7 @@ else enableval=yes fi -if test x$enable_ext_env = xyes; then +if test x$enable_ext_env = xyes -o x$enableval = xyes; then $as_echo "#define ENABLE_EXT_ENV 1" >>confdefs.h --- autofs-5.0.7.orig/configure.in +++ autofs-5.0.7/configure.in @@ -346,7 +346,7 @@ AC_SUBST(DAEMON_LDFLAGS) AC_ARG_ENABLE(ext-env, [ --disable-ext-env disable search in environment for substitution variable],, enableval=yes) -if test x$enable_ext_env = xyes; then +if test x$enable_ext_env = xyes -o x$enableval = xyes; then AC_DEFINE(ENABLE_EXT_ENV, 1, [leave this alone]) fi