* doc/autoconf.texi (Generic Structure Checks): Describe

action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
This commit is contained in:
Pavel Roskin 2003-11-03 16:35:00 +00:00
parent 6ff118ad18
commit 3a06ae4af8
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-11-03 Pavel Roskin <proski@gnu.org>
* doc/autoconf.texi (Generic Structure Checks): Describe
action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
2003-10-31 Akim Demaille <akim@epita.fr>
* tests/fortran.at (GNU Fortran 77): Don't run FC macros.

View File

@ -5006,7 +5006,10 @@ AC_CHECK_MEMBER(struct top.middle.bot)
Check for the existence of each @samp{@var{aggregate}.@var{member}} of
@var{members} using the previous macro. When @var{member} belongs to
@var{aggregate}, define @code{HAVE_@var{aggregate}_@var{member}} (in all
capitals, with spaces and dots replaced by underscores).
capitals, with spaces and dots replaced by underscores). If
@var{action-if-found} is given, it is executed for each of the found
members. If @var{action-if-not-found} is given, it is executed for each
of the members that could not be found.
This macro uses m4 lists:
@example