mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-06 10:25:53 +08:00
Don't expose AC_{COMPILE,LINK}_IFELSE internals in documentation.
* doc/autoconf.texi (Runtime) <AC_LINK_IFELSE>: Suggest to use `conftest$EXEEXT' rather than `conftest$ac_exeext' to acces the just-linked program file. (Runtime) <AC_COMPILE_IFELSE>: Suggest to use `conftest.$OBJEXT' rather than `conftest.$ac_object' to access the just-compiled object file. Also, refer to the object file as "just-compiled" rather than "just-linked".
This commit is contained in:
parent
f91e8dbe6d
commit
f44e1243ec
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
|||||||
|
2010-05-25 Stefano Lattarini <stefano.lattarini@gmail.com>
|
||||||
|
Eric Blake <eblake@redhat.com>
|
||||||
|
|
||||||
|
Don't expose AC_{COMPILE,LINK}_IFELSE internals in documentation.
|
||||||
|
* doc/autoconf.texi (Runtime) <AC_LINK_IFELSE>: Suggest to use
|
||||||
|
`conftest$EXEEXT' rather than `conftest$ac_exeext' to acces the
|
||||||
|
just-linked program file.
|
||||||
|
(Runtime) <AC_COMPILE_IFELSE>: Suggest to use `conftest.$OBJEXT'
|
||||||
|
rather than `conftest.$ac_object' to access the just-compiled
|
||||||
|
object file. Also, refer to the object file as "just-compiled"
|
||||||
|
rather than "just-linked".
|
||||||
|
|
||||||
2010-05-20 Eric Blake <eblake@redhat.com>
|
2010-05-20 Eric Blake <eblake@redhat.com>
|
||||||
|
|
||||||
Mention another line-counting alternative.
|
Mention another line-counting alternative.
|
||||||
|
@ -8915,7 +8915,7 @@ It is customary to report unexpected failures with
|
|||||||
@code{AC_MSG_FAILURE}. This macro does not try to link; use
|
@code{AC_MSG_FAILURE}. This macro does not try to link; use
|
||||||
@code{AC_LINK_IFELSE} if you need to do that (@pxref{Running the
|
@code{AC_LINK_IFELSE} if you need to do that (@pxref{Running the
|
||||||
Linker}). If needed, @var{action-if-true} can further access the
|
Linker}). If needed, @var{action-if-true} can further access the
|
||||||
just-linked object file @file{conftest.$ac_object}.
|
just-compiled object file @file{conftest.$OBJEXT}.
|
||||||
|
|
||||||
This macro uses @code{AC_REQUIRE} for the compiler associated with the
|
This macro uses @code{AC_REQUIRE} for the compiler associated with the
|
||||||
current language, which means that if the compiler has not yet been
|
current language, which means that if the compiler has not yet been
|
||||||
@ -8961,7 +8961,7 @@ language (@pxref{Language Choice}) on the @var{input}, run the shell
|
|||||||
commands @var{action-if-true} on success, @var{action-if-false}
|
commands @var{action-if-true} on success, @var{action-if-false}
|
||||||
otherwise. The @var{input} can be made by @code{AC_LANG_PROGRAM} and
|
otherwise. The @var{input} can be made by @code{AC_LANG_PROGRAM} and
|
||||||
friends. If needed, @var{action-if-true} can further access the
|
friends. If needed, @var{action-if-true} can further access the
|
||||||
just-linked program file @file{conftest$ac_exeext}.
|
just-linked program file @file{conftest$EXEEXT}.
|
||||||
|
|
||||||
@code{LDFLAGS} and @code{LIBS} are used for linking, in addition to the
|
@code{LDFLAGS} and @code{LIBS} are used for linking, in addition to the
|
||||||
current compilation flags.
|
current compilation flags.
|
||||||
|
Loading…
Reference in New Issue
Block a user