From: Akim Demaille Date: Tue, 22 Oct 2002 12:13:21 +0000 (+0000) Subject: * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples. X-Git-Tag: AUTOCONF-2.54a~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6d7289f9e72c1b0a203fdf2ffaa89bf5af2c2b0;p=thirdparty%2Fautoconf.git * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples. (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS. From Art Haas. --- diff --git a/ChangeLog b/ChangeLog index e0af064e6..0b4542a82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-10-22 Akim Demaille + + * 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 Restore the 2002-10-11 Akim Demaille patch: diff --git a/doc/autoconf.texi b/doc/autoconf.texi index a57c41f10..7c9be2aa5 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -8603,7 +8603,7 @@ as @command{autoconf} uses a .in suffix for template files. 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 @@ -8614,7 +8614,7 @@ but it causes problems on @sc{dos}, as it requires @samp{config.h.in}, 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 @@ -12676,7 +12676,7 @@ Now it just calls @code{AC_FUNC_STRFTIME} instead. @defmac AC_ST_BLKSIZE @acindex ST_BLKSIZE -@code{AC_STRUCT_ST_BLKSIZE} +@code{AC_CHECK_MEMBERS} @end defmac @defmac AC_ST_BLOCKS @@ -12686,7 +12686,7 @@ Now it just calls @code{AC_FUNC_STRFTIME} instead. @defmac AC_ST_RDEV @acindex ST_RDEV -@code{AC_STRUCT_ST_RDEV} +@code{AC_CHECK_MEMBERS} @end defmac @defmac AC_SYS_RESTARTABLE_SYSCALLS