* doc/autoconf.texi (Particular Structures): Fix examples for

AC_STRUCT_ST_BLKSIZE and AC_STRUCT_ST_RDEV.
This commit is contained in:
Pavel Roskin 2000-11-11 04:24:29 +00:00
parent 9e7be4c525
commit fa48839ba3
2 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-11-10 Pavel Roskin <proski@gnu.org>
* doc/autoconf.texi (Particular Structures): Fix examples for
AC_STRUCT_ST_BLKSIZE and AC_STRUCT_ST_RDEV.
2000-11-10 Pavel Roskin <proski@gnu.org>
* doc/autoconf.texi (Limitations of Usual Tools): Don't use

View File

@ -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 <sys/types.h>
#include <sys/stat.h>])
@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 <sys/types.h>
#include <sys/stat.h>])
@end group
@end example
@end defmac