]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 13 Jan 2004 18:36:54 +0000 (18:36 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 13 Jan 2004 18:36:54 +0000 (18:36 +0000)
AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)

ChangeLog
doc/autoconf.texi

index d591de1a378b26728009db537388768f204abdb7..8f9a6e72558d04abbe43f16ffb9b6d7fc2b6ed75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-13  Eric Blake  <ebb9@byu.net>
+
+       * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
+       AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
+
 2004-01-10  Jim Meyering  <jim@meyering.net>
 
        * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
@@ -5,8 +10,8 @@
 2004-01-09  Paul Eggert  <eggert@twinsun.com>
 
        * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
-       with `autoconf -Wall,error'.  Bug reported by Eric Blake in
-       <http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html>.
+       with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
+       http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
        (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
        AC_COMPILE_IFELSE, since we now assume our caller invokes
        AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
index 86ab24bb242f312d486ff15e566f62f33698f096..fb5eb89515e4b67ec0cfbc40bbc0ca08fd65e061 100644 (file)
@@ -13974,7 +13974,7 @@ issue.
 
 @defmac AC_TRY_COMPILE (@var{includes}, @var{function-body}, @ovar{action-if-found}, @ovar{action-if-not-found})
 @acindex{TRY_COMPILE}
-Same as @samp{AC_COMPILE_IFELSE([AC_LANG_SOURCE([[@var{includes}]],
+Same as @samp{AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@var{includes}]],
 [[@var{function-body}]])], [@var{action-if-true}],
 [@var{action-if-false}])} (@pxref{Running the Compiler}).
 
@@ -13998,7 +13998,7 @@ This macro double quotes the @var{input}.
 
 @defmac AC_TRY_LINK (@var{includes}, @var{function-body}, @ovar{action-if-found}, @ovar{action-if-not-found})
 @acindex{TRY_LINK}
-Same as @samp{AC_LINK_IFELSE([AC_LANG_SOURCE([[@var{includes}]],
+Same as @samp{AC_LINK_IFELSE([AC_LANG_PROGRAM([[@var{includes}]],
 [[@var{function-body}]])], [@var{action-if-true}],
 [@var{action-if-false}])} (@pxref{Running the Compiler}).