diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-10-27 17:19:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-10-27 17:19:06 +0000 |
commit | ad27e871a1c17d37a6de5332709e86e420b3b750 (patch) | |
tree | 6e22184d5a011982a35c8ed5ef2047b7d2bd7d7f /config_h.SH | |
parent | 1ae6be1c7649fa55b3105031a58ffe146fa4f2fd (diff) | |
download | perl-ad27e871a1c17d37a6de5332709e86e420b3b750.tar.gz |
Regen Configure.
p4raw-id: //depot/cfgperl@4470
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/config_h.SH b/config_h.SH index a12916e59e..fc5d9edfe5 100644 --- a/config_h.SH +++ b/config_h.SH @@ -2192,6 +2192,12 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #$d_endspent HAS_ENDSPENT /**/ +/* HAS_STRUCT_FS_DATA: + * This symbol, if defined, indicates that the struct fs_data + * to do statfs() is supported. + */ +#$d_fs_data_s HAS_STRUCT_FS_DATA /**/ + /* HAS_FSEEKO: * This symbol, if defined, indicates that the fseeko routine is * available to fseek beyond 32 bits (useful for ILP32 hosts). @@ -2209,6 +2215,12 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #$d_ftello HAS_FTELLO /**/ +/* HAS_GETMNT: + * This symbol, if defined, indicates that the getmnt routine is + * available to get filesystem mount info by filename. + */ +#$d_getmnt HAS_GETMNT /**/ + /* HAS_GETMNTENT: * This symbol, if defined, indicates that the getmntent routine is * available to iterate through mounted file systems to get their info. @@ -2278,32 +2290,23 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #$d_sqrtl HAS_SQRTL /**/ -/* HAS_STATFS: - * This symbol, if defined, indicates that the statfs routine is - * available to stat filesystems by filenames. - */ -/* HAS_STRUCT_STATFS: - * This symbol, if defined, indicates that the struct statfs - * to do statfs() is supported. - */ -/* HAS_STRUCT_FS_DATA: - * This symbol, if defined, indicates that the struct fs_data - * to do statfs() is supported. - */ /* HAS_STRUCT_STATFS_F_FLAGS: * This symbol, if defined, indicates that the struct statfs * does have the f_flags member containing the mount flags of * the filesystem containing the file. * This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3), * not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not - * have statfs() and struct statfs, they have ustat() and statfs() - * with struct fs_data. + * have statfs() and struct statfs, they have ustat() and getmnt() + * with struct ustat and struct fs_data. */ -#$d_statfs HAS_STATFS /**/ -#$d_statfs_s HAS_STRUCT_STATFS /**/ -#$d_fs_data_s HAS_STRUCT_FS_DATA /**/ #$d_statfs_f_flags HAS_STRUCT_STATFS_F_FLAGS /**/ +/* HAS_STRUCT_STATFS: + * This symbol, if defined, indicates that the struct statfs + * to do statfs() is supported. + */ +#$d_statfs_s HAS_STRUCT_STATFS /**/ + /* HAS_FSTATVFS: * This symbol, if defined, indicates that the fstatvfs routine is * available to stat filesystems by file descriptors. |