]> sourceware.org Git - automake.git/commitdiff
1999-02-01 Thomas Tanner <tanner@gmx.de>
authorTom Tromey <tromey@redhat.com>
Mon, 22 Mar 1999 11:49:42 +0000 (11:49 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 22 Mar 1999 11:49:42 +0000 (11:49 +0000)
* automake.in: accept both A(C|M)_PROG_LIBTOOL, print a
warning when AM_PROG_LIBTOOL was found
* automake.texi: renamed AM_PROG_LIBTOOL to AC_PROG_LIBTOOL

ChangeLog
TODO
automake.in
automake.texi
stamp-vti
version.texi

index 9f1137269f495e210b32ea46fdeaca26a00ce7b9..85f58b9ea27bb5cbf2b7fa6029a64b37265ecfc6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-02-01  Thomas Tanner  <tanner@gmx.de>
+
+       * automake.in: accept both A(C|M)_PROG_LIBTOOL, print a
+       warning when AM_PROG_LIBTOOL was found
+       * automake.texi: renamed AM_PROG_LIBTOOL to AC_PROG_LIBTOOL
+
 1999-03-22  Tom Tromey  <tromey@cygnus.com>
 
        Made `+=' more robust.  Fixes pluseq6.test and pluseq7.test.
diff --git a/TODO b/TODO
index 95a4a60e2821c82b252d7bb08e5e114cbe0edac9..fbb19a2f8ad388a86be88dd8fff593475948d9c9 100644 (file)
--- a/TODO
+++ b/TODO
@@ -4,6 +4,7 @@
 
 * CFLAGS only defined if C source seen
   but really it should be a configure variable, shouldn't it?
+  There are other examples of this
 
 * Get rid of .s.o and .S.o rules unless assembly source is seen.
 
index 0e45ef97871c5da6fbb05a1535bc46b87c08d91d..fec411f9b28b1561f24de5495c3434c0b770e614 100755 (executable)
@@ -182,7 +182,7 @@ $seen_canonical = 0;
 # TRUE if we've seen AC_ARG_PROGRAM.
 $seen_arg_prog = 0;
 
-# TRUE if we've seen AM_PROG_LIBTOOL.
+# TRUE if we've seen AC_PROG_LIBTOOL.
 $seen_libtool = 0;
 $libtool_line = 0;
 
@@ -4280,14 +4280,18 @@ sub scan_one_configure_file
        $seen_prog_install = 1 if /AC_PROG_INSTALL/;
         $seen_lispdir = 1 if /AM_PATH_LISPDIR/;
 
-        if (/AM_PROG_LIBTOOL/)
+        if (/A(C|M)_PROG_LIBTOOL/)
        {
+           if (/AM_PROG_LIBTOOL/)
+           {
+               &am_conf_line_warning ($filename, $., "\`AM_PROG_LIBTOOL' is obsolete, use \`AC_PROG_LIBTOOL' instead");
+           }
            $seen_libtool = 1;
            $libtool_line = $.;
            $configure_vars{'LIBTOOL'} = $filename . ':' . $.;
            $configure_vars{'RANLIB'} = $filename . ':' . $.;
            $configure_vars{'CC'} = $filename . ':' . $.;
-           # AM_PROG_LIBTOOL runs AC_CANONICAL_HOST.  Make sure we
+           # AC_PROG_LIBTOOL runs AC_CANONICAL_HOST.  Make sure we
            # never downgrade (if we've seen AC_CANONICAL_SYSTEM).
            $seen_canonical = $AC_CANONICAL_HOST if ! $seen_canonical;
        }
index e3dad9c6f8d5c397a1a24e22dafcc37e858f688b..d7d319740c815bb5b192cd278b8cf974043da8d0 100644 (file)
@@ -1111,10 +1111,10 @@ languages that include Fortran 77 (@pxref{Mixing Fortran 77 With C and
 C++}).  @xref{Macros, , Autoconf macros supplied with Automake}.
 @cvindex AC_F77_LIBRARY_LDFLAGS
 
-@item AM_PROG_LIBTOOL
+@item AC_PROG_LIBTOOL
 Automake will turn on processing for @code{libtool} (@pxref{Top, ,
 Introduction, libtool, The Libtool Manual}).
-@cvindex AM_PROG_LIBTOOL
+@cvindex AC_PROG_LIBTOOL
 
 @item AC_PROG_YACC
 If a Yacc source file is seen, then you must either use this macro or
index 01294f1631f855d38c206d98ebc1e06d5de337d8..1623932f189a3fd3a020789e1ad21bfb622942cb 100644 (file)
--- a/stamp-vti
+++ b/stamp-vti
@@ -1,3 +1,3 @@
-@set UPDATED 22 January 1999
+@set UPDATED 22 March 1999
 @set EDITION 1.4a
 @set VERSION 1.4a
index 01294f1631f855d38c206d98ebc1e06d5de337d8..1623932f189a3fd3a020789e1ad21bfb622942cb 100644 (file)
@@ -1,3 +1,3 @@
-@set UPDATED 22 January 1999
+@set UPDATED 22 March 1999
 @set EDITION 1.4a
 @set VERSION 1.4a
This page took 0.047305 seconds and 5 git commands to generate.