mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-18 10:45:15 +08:00
* doc/autoconf.texi (Particular Structures): Fix examples for
AC_STRUCT_ST_BLKSIZE and AC_STRUCT_ST_RDEV.
This commit is contained in:
parent
9e7be4c525
commit
fa48839ba3
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user