* doc/autoconf.texi (Versioning): Change the name.
* NEWS: Likewise.
* lib/autoconf/general.m4 (AC_AUTOCONF_VERSION): Likewise.
* tests/tools.at (autoconf: AC_AUTOCONF_VERSION): Likewise.
Suggested by Ralf Wildenhues.
Signed-off-by: Eric Blake <ebb9@byu.net>
2007-10-12 Eric Blake <ebb9@byu.net>
+ s/AC_VERSION/AC_AUTOCONF_VERSION/.
+ * doc/autoconf.texi (Versioning): Change the name.
+ * NEWS: Likewise.
+ * lib/autoconf/general.m4 (AC_AUTOCONF_VERSION): Likewise.
+ * tests/tools.at (autoconf: AC_AUTOCONF_VERSION): Likewise.
+ Suggested by Ralf Wildenhues.
+
Namespace cleanup.
* lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE)
(_AC_OUTPUT_HEADERS_PREPARE): Convert here-doc delimiters into
generated by autoconf under the license of your own program.
FIXME - revisit this line once exception clause is finalized.
-** New Autoconf macros AC_OPENMP, AC_PATH_PROGS_FEATURE_CHECK, AC_VERSION.
+** New Autoconf macros:
+ AC_AUTOCONF_VERSION AC_OPENMP AC_PATH_PROGS_FEATURE_CHECK
** AC_C_BIGENDIAN now supports universal binaries a la Mac OS X.
** Document the m4sugar macros m4_ifndef and m4_version_compare
(available without documentation since at least autoconf 2.53).
Packages using the undocumented m4sugar macro m4_PACKAGE_VERSION
- should consider using the new AC_VERSION instead.
+ should consider using the new AC_AUTOCONF_VERSION instead.
** Warnings are now generated by default when an installer invokes
'configure' with an unknown --enable-* or --with-* option.
for consistency, you are invited not to do so.
@end defmac
-@defmac AC_VERSION
-@acindex{VERSION}
+@defmac AC_AUTOCONF_VERSION
+@acindex{AUTOCONF_VERSION}
This macro was introduced in Autoconf 2.62. It identifies the version
of Autoconf that is currently parsing the input file, in a format
suitable for @code{m4_version_compare} (@pxref{m4_version_compare}); in
m4_copy([m4_version_prereq], [AC_PREREQ])
-# AC_VERSION
-# ----------
+# AC_AUTOCONF_VERSION
+# -------------------
# The current version of Autoconf parsing this file.
-m4_copy([m4_PACKAGE_VERSION], [AC_VERSION])
+m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])
AT_CLEANUP
-# autoconf: AC_VERSION
+# autoconf: AC_AUTOCONF_VERSION
# --------------------------------------
-AT_SETUP([autoconf: AC_VERSION])
+AT_SETUP([autoconf: AC_AUTOCONF_VERSION])
AT_DATA([configure.ac],
[[AC_INIT
-version AC_VERSION version
+version AC_AUTOCONF_VERSION version
AC_OUTPUT
]])