* doc/autoconf.texi (Generic Structures):

s/AC_FATAL/AC_MSG_ERROR.
This commit is contained in:
Akim Demaille 2000-02-15 09:16:48 +00:00
parent 86b8b0de15
commit de931b4d30
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-02-15 Akim Demaille <akim@epita.fr>
* doc/autoconf.texi (Generic Structures):
s/AC_FATAL/AC_MSG_ERROR.
2000-02-15 Akim Demaille <akim@epita.fr>
autoreconf had a silly syntax error, test it and fix it.

View File

@ -3128,9 +3128,10 @@ particular test macros.
Check whether @var{member} is a member of the aggregate @var{aggregate}.
If no @var{includes} are specified, the default includes are used
(@pxref{Default Includes}).
@example
AC_CHECK_MEMBER(struct passwd.pw_gecos,,
[AC_FATAL([We need `struct passwd.pw_gecos'!])],
[AC_MSG_ERROR([We need `struct passwd.pw_gecos'!])],
[#include <pwd.h>])
@end example
@end defmac

View File

@ -3128,9 +3128,10 @@ particular test macros.
Check whether @var{member} is a member of the aggregate @var{aggregate}.
If no @var{includes} are specified, the default includes are used
(@pxref{Default Includes}).
@example
AC_CHECK_MEMBER(struct passwd.pw_gecos,,
[AC_FATAL([We need `struct passwd.pw_gecos'!])],
[AC_MSG_ERROR([We need `struct passwd.pw_gecos'!])],
[#include <pwd.h>])
@end example
@end defmac