From: Pavel Roskin Date: Sat, 11 Nov 2000 04:24:29 +0000 (+0000) Subject: * doc/autoconf.texi (Particular Structures): Fix examples for X-Git-Tag: autoconf-2.50~436 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa48839ba3646459703182382e00fee7b60bdffa;p=thirdparty%2Fautoconf.git * doc/autoconf.texi (Particular Structures): Fix examples for AC_STRUCT_ST_BLKSIZE and AC_STRUCT_ST_RDEV. --- diff --git a/ChangeLog b/ChangeLog index 4c76f0cbf..331b967d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-11-10 Pavel Roskin + + * doc/autoconf.texi (Particular Structures): Fix examples for + AC_STRUCT_ST_BLKSIZE and AC_STRUCT_ST_RDEV. + 2000-11-10 Pavel Roskin * doc/autoconf.texi (Limitations of Usual Tools): Don't use diff --git a/doc/autoconf.texi b/doc/autoconf.texi index a3a5bc012..795582ca1 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -3803,7 +3803,11 @@ If @code{struct stat} contains an @code{st_blksize} member, define the future. This macro is obsoleted, and should be replaced by @example -AC_CHECK_MEMBERS((struct stat.st_blksize)) +@group +AC_CHECK_MEMBERS([struct stat.st_blksize],,, +[#include +#include ]) +@end group @end example @end defmac @@ -3829,7 +3833,11 @@ is to be avoided, as its support will cease in the future. This macro is obsoleted, and should be replaced by @example -AC_CHECK_MEMBERS((struct stat.st_rdev)) +@group +AC_CHECK_MEMBERS([struct stat.st_rdev],,, +[#include +#include ]) +@end group @end example @end defmac