s/AC_FATAL/AC_MSG_ERROR.
+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.
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
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