+2002-10-22 Akim Demaille <akim@epita.fr>
+
+ * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
+ (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
+ From Art Haas.
+
2002-10-22 Akim Demaille <akim@epita.fr>
Restore the 2002-10-11 Akim Demaille <akim@epita.fr> patch:
This is perfectly OK on Unices:
@example
-AC_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([source.c foo.bar])
AC_OUTPUT
@end example
to @sc{dos}-based environments, you should use this instead:
@example
-AC_CONFIG_HEADER(config.h:config.hin)
+AC_CONFIG_HEADERS([config.h:config.hin])
AC_CONFIG_FILES([source.c:source.cin foo.bar:foobar.in])
AC_OUTPUT
@end example
@defmac AC_ST_BLKSIZE
@acindex ST_BLKSIZE
-@code{AC_STRUCT_ST_BLKSIZE}
+@code{AC_CHECK_MEMBERS}
@end defmac
@defmac AC_ST_BLOCKS
@defmac AC_ST_RDEV
@acindex ST_RDEV
-@code{AC_STRUCT_ST_RDEV}
+@code{AC_CHECK_MEMBERS}
@end defmac
@defmac AC_SYS_RESTARTABLE_SYSCALLS