]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
s/AC_VERSION/AC_AUTOCONF_VERSION/.
authorEric Blake <ebb9@byu.net>
Fri, 12 Oct 2007 18:14:03 +0000 (12:14 -0600)
committerEric Blake <ebb9@byu.net>
Fri, 12 Oct 2007 18:14:03 +0000 (12:14 -0600)
* 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>
ChangeLog
NEWS
doc/autoconf.texi
lib/autoconf/general.m4
tests/tools.at

index c1d5c0dca7af9796ac6c0076fb0d53dbb0fffad8..80567a5324a405524bb190f9918c35facca6a867 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 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
diff --git a/NEWS b/NEWS
index 5c0e3c55b5974a498a7e5bbf21751b3cd8d308b4..f24c585651f983fc690025e9ac55e7e65e59ed7b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -19,7 +19,8 @@ GNU Autoconf NEWS - User visible changes.
    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.
 
@@ -75,7 +76,7 @@ GNU Autoconf NEWS - User visible changes.
 ** 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.
index 74295b6554d248bb07fdda64f48e2add4386212c..f8550a4ebe948e05d3dab0368be0cae5f241feb7 100644 (file)
@@ -1792,8 +1792,8 @@ This macro is the only macro that may be used before @code{AC_INIT}, but
 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
index 1b7a35534be7075dee807cfe8f6c8fafcb15ac48..b57d8872c1a160c63b45dec4f300851dc91c698c 100644 (file)
@@ -299,10 +299,10 @@ AU_DEFUN([AC_PREREQ],
 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])
 
 
 
index e13a737c1b425cceb46e6bdf1279b487c837e2f4..aca280893b738f41b2e2bf2b8ac48a9d0c9b6959 100644 (file)
@@ -405,13 +405,13 @@ AT_CHECK([echo 'AC_INIT(X, 2.0, bug-autoconf@gnu.org)' | autoconf -t AC_INIT -],
 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
 ]])