]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi (Particular Structures): Fix examples for
authorPavel Roskin <proski@gnu.org>
Sat, 11 Nov 2000 04:24:29 +0000 (04:24 +0000)
committerPavel Roskin <proski@gnu.org>
Sat, 11 Nov 2000 04:24:29 +0000 (04:24 +0000)
AC_STRUCT_ST_BLKSIZE and AC_STRUCT_ST_RDEV.

ChangeLog
doc/autoconf.texi

index 4c76f0cbf0781564baeaf09c012ebe38cbce5ad6..331b967d42bd29c16b82c335a86a33c6ee8858f9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index a3a5bc0126f7147cd2fb322ed2d52a169a252127..795582ca1315dd3bb836b8351988abbb1bf52025 100644 (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