diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-05-27 18:39:47 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-05-27 18:39:47 +0300 |
commit | 62b366e5e839aee729a9f97d3c4c38bca4aaddab (patch) | |
tree | 0c43d8cf58d96a682d76d6eef0fad674e34cba87 /doc/gawktexi.in | |
parent | ab87511e508240554044d3913c3030b35d26b29e (diff) | |
download | egawk-62b366e5e839aee729a9f97d3c4c38bca4aaddab.tar.gz egawk-62b366e5e839aee729a9f97d3c4c38bca4aaddab.tar.bz2 egawk-62b366e5e839aee729a9f97d3c4c38bca4aaddab.zip |
Replace obsolete AC_STRUCT_ST_BLKSIZE macro.
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index 66233028..f2bc9c2a 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -31005,9 +31005,9 @@ certain members and/or the type of the file. It then returns zero, for success: @example -#ifdef HAVE_ST_BLKSIZE +#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE array_set_numeric(array, "blksize", sbuf->st_blksize); -#endif /* HAVE_ST_BLKSIZE */ +#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */ pmode = format_mode(sbuf->st_mode); array_set(array, "pmode", make_const_string(pmode, strlen(pmode), @@ -33449,7 +33449,7 @@ they can be correctly included, what (supposedly) standard functions are actually available in your C libraries, and various miscellaneous facts about your operating system. For example, there may not be an @code{st_blksize} element in the @code{stat} structure. In this case, -@samp{HAVE_ST_BLKSIZE} is undefined. +@samp{HAVE_STRUCT_STAT_ST_BLKSIZE} is undefined. @cindex @code{custom.h} file It is possible for your C compiler to lie to @command{configure}. It may |