From: Akim Demaille Date: Tue, 15 Feb 2000 09:16:48 +0000 (+0000) Subject: * doc/autoconf.texi (Generic Structures): X-Git-Tag: autoconf-2.50~1139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de931b4d3061578bbabe561bd54ee70b46f29044;p=thirdparty%2Fautoconf.git * doc/autoconf.texi (Generic Structures): s/AC_FATAL/AC_MSG_ERROR. --- diff --git a/ChangeLog b/ChangeLog index ec78be7f2..1732d90e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-02-15 Akim Demaille + + * doc/autoconf.texi (Generic Structures): + s/AC_FATAL/AC_MSG_ERROR. + 2000-02-15 Akim Demaille autoreconf had a silly syntax error, test it and fix it. diff --git a/autoconf.texi b/autoconf.texi index 201085e18..780852753 100644 --- a/autoconf.texi +++ b/autoconf.texi @@ -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 ]) @end example @end defmac diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 201085e18..780852753 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -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 ]) @end example @end defmac