This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix .gitignore: only ignore 'perl' in root of repo, not U/perl subdir
[metaconfig.git] / U / perl / d_statfs_f_flags.U
CommitLineData
b8cde3c7
JH
1?RCS: $Id$
2?RCS:
3?RCS: Copyright (c) 1999 Jarkko Hietaniemi
4?RCS:
5?RCS: You may distribute under the terms of either the GNU General Public
6?RCS: License or the Artistic License, as specified in the README file.
7?RCS:
8?MAKE:d_statfs_f_flags: \
9 Hasfield i_sysparam i_sysmount i_systypes \
14ed9e9a 10 i_sysvfs i_sysstatfs Setvar d_statfs_s
b8cde3c7
JH
11?MAKE: -pick add $@ %<
12?S:d_statfs_f_flags:
13?S: This variable conditionally defines the HAS_STRUCT_STATFS_F_FLAGS
14?S: symbol, which indicates to struct statfs from has f_flags member.
15?S: This kind of struct statfs is coming from sys/mount.h (BSD),
16?S: not from sys/statfs.h (SYSV).
17?S:.
18?C:HAS_STRUCT_STATFS_F_FLAGS:
19?C: This symbol, if defined, indicates that the struct statfs
20?C: does have the f_flags member containing the mount flags of
21?C: the filesystem containing the file.
22?C: This kind of struct statfs is coming from <sys/mount.h> (BSD 4.3),
23?C: not from <sys/statfs.h> (SYSV). Older BSDs (like Ultrix) do not
24?C: have statfs() and struct statfs, they have ustat() and getmnt()
25?C: with struct ustat and struct fs_data.
26?C:.
27?H:#$d_statfs_f_flags HAS_STRUCT_STATFS_F_FLAGS /**/
28?H:.
29?LINT:set d_statfs_f_flags
b8cde3c7
JH
30: see if struct statfs knows about f_flags
31case "$d_statfs_s" in
2f125bce 32define)
b8cde3c7 33 echo " "
14ed9e9a 34 echo "Checking to see if your struct statfs has f_flags field..." >&4
b8cde3c7
JH
35 set d_statfs_f_flags statfs f_flags $i_systypes sys/types.h $i_sysparam sys/param.h $i_sysmount sys/mount.h $i_sysvfs sys/vfs.h $i_sysstatfs sys/statfs.h
36 eval $hasfield
37 ;;
38*) val="$undef"
39 set d_statfs_f_flags
40 eval $setvar
41 ;;
42esac
43case "$d_statfs_f_flags" in
6c094af6
JH
44"$define") echo "Yes, it does." ;;
45*) echo "No, it doesn't." ;;
b8cde3c7
JH
46esac
47