]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
authorAkim Demaille <akim@epita.fr>
Tue, 22 Oct 2002 12:13:21 +0000 (12:13 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 22 Oct 2002 12:13:21 +0000 (12:13 +0000)
(AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
From Art Haas.

ChangeLog
doc/autoconf.texi

index e0af064e6ee6431df99aa8de64e2c817b8c585e9..0b4542a82ef649118c53981f1f108db8faf9b506 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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:
index a57c41f10cb71689de96bde2c3de2b304d020b23..7c9be2aa55b6e8968a1213244fa9246cbb15ba20 100644 (file)
@@ -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