AC_CONFIG_FILES, AC_CONFIG_COMMANDS, and new-type AC_OUTPUT trio.
2002-10-18 Jeff Bailey <jbailey@gnu.org>
+ * configure.in: Replace obsolete AC_OUTPUT syntax with
+ AC_CONFIG_FILES, AC_CONFIG_COMMANDS, and new-type AC_OUTPUT trio.
+
* aclocal.m4 (GLIBC_PROVIDES): Add AC_PROVIDEs for
_AS_PATH_SEPARATOR_PREPARE and _AS_TEST_PREPARE.
AC_SUBST(VERSION)
AC_SUBST(RELEASE)
-AC_OUTPUT(config.make glibcbug ${config_makefile} ${config_uname}, [
+AC_CONFIG_FILES([config.make glibcbug ${config_makefile} ${config_uname}])
+AC_CONFIG_COMMANDS([default],[[
case $CONFIG_FILES in *config.make*)
echo "$config_vars" >> config.make;;
esac
-test -d bits || mkdir bits], [config_vars='$config_vars'])
+test -d bits || mkdir bits]],[[config_vars='$config_vars']])
+AC_OUTPUT