changed mcedit man.
[midnight-commander.git] / m4.include / fsusage.m4
blobadf27d4c23598cc344fa92aa1df4f9a8f5684a98
1 # serial 29
2 # Obtaining file system usage information.
4 # Copyright (C) 1997-1998, 2000-2001, 2003-2011 Free Software Foundation, Inc.
6 # This file is free software; the Free Software Foundation
7 # gives unlimited permission to copy and/or distribute it,
8 # with or without modifications, as long as this notice is preserved.
10 # Written by Jim Meyering.
12 AC_DEFUN([gl_FSUSAGE],
14   AC_CHECK_HEADERS_ONCE([sys/param.h])
15   AC_CHECK_HEADERS_ONCE([sys/vfs.h sys/fs_types.h])
16   AC_CHECK_HEADERS([sys/mount.h], [], [],
17     [AC_INCLUDES_DEFAULT
18      [#if HAVE_SYS_PARAM_H
19        #include <sys/param.h>
20       #endif]])
21   gl_FILE_SYSTEM_USAGE([gl_cv_fs_space=yes], [gl_cv_fs_space=no])
24 # Try to determine how a program can obtain file system usage information.
25 # If successful, define the appropriate symbol (see fsusage.c) and
26 # execute ACTION-IF-FOUND.  Otherwise, execute ACTION-IF-NOT-FOUND.
28 # gl_FILE_SYSTEM_USAGE([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
30 AC_DEFUN([gl_FILE_SYSTEM_USAGE],
32 dnl Enable large-file support. This has the effect of changing the size
33 dnl of field f_blocks in 'struct statvfs' from 32 bit to 64 bit on
34 dnl glibc/Hurd, HP-UX 11, Solaris (32-bit mode). It also changes the size
35 dnl of field f_blocks in 'struct statfs' from 32 bit to 64 bit on
36 dnl Mac OS X >= 10.5 (32-bit mode).
37 AC_REQUIRE([AC_SYS_LARGEFILE])
39 AC_MSG_NOTICE([checking how to get file system space usage])
40 ac_fsusage_space=no
42 # Perform only the link test since it seems there are no variants of the
43 # statvfs function.  This check is more than just AC_CHECK_FUNCS([statvfs])
44 # because that got a false positive on SCO OSR5.  Adding the declaration
45 # of a `struct statvfs' causes this test to fail (as it should) on such
46 # systems.  That system is reported to work fine with STAT_STATFS4 which
47 # is what it gets when this test fails.
48 if test $ac_fsusage_space = no; then
49   # glibc/{Hurd,kFreeBSD}, FreeBSD >= 5.0, NetBSD >= 3.0,
50   # OpenBSD >= 4.4, AIX, HP-UX, IRIX, Solaris, Cygwin, Interix, BeOS.
51   AC_CACHE_CHECK([for statvfs function (SVR4)], [fu_cv_sys_stat_statvfs],
52                  [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
53 #ifdef __osf__
54 "Do not use Tru64's statvfs implementation"
55 #endif
57 #include <sys/statvfs.h>
59 struct statvfs fsd;
61 #if defined __APPLE__ && defined __MACH__
62 #include <limits.h>
63 /* On Mac OS X >= 10.5, f_blocks in 'struct statvfs' is a 32-bit quantity;
64    that commonly limits file systems to 4 TiB.  Whereas f_blocks in
65    'struct statfs' is a 64-bit type, thanks to the large-file support
66    that was enabled above.  In this case, don't use statvfs(); use statfs()
67    instead.  */
68 int check_f_blocks_size[sizeof fsd.f_blocks * CHAR_BIT <= 32 ? -1 : 1];
69 #endif
70 ]],
71                                     [[statvfs (0, &fsd);]])],
72                                  [fu_cv_sys_stat_statvfs=yes],
73                                  [fu_cv_sys_stat_statvfs=no])])
74   if test $fu_cv_sys_stat_statvfs = yes; then
75     ac_fsusage_space=yes
76     # AIX >= 5.2 has statvfs64 that has a wider f_blocks field than statvfs.
77     # glibc, HP-UX, IRIX, Solaris have statvfs64 as well, but on these systems
78     # statvfs with large-file support is already equivalent to statvfs64.
79     AC_CACHE_CHECK([whether to use statvfs64],
80       [fu_cv_sys_stat_statvfs64],
81       [AC_LINK_IFELSE(
82          [AC_LANG_PROGRAM(
83             [[#include <sys/types.h>
84               #include <sys/statvfs.h>
85               struct statvfs64 fsd;
86               int check_f_blocks_larger_in_statvfs64
87                 [sizeof (((struct statvfs64 *) 0)->f_blocks)
88                  > sizeof (((struct statvfs *) 0)->f_blocks)
89                  ? 1 : -1];
90             ]],
91             [[statvfs64 (0, &fsd);]])],
92          [fu_cv_sys_stat_statvfs64=yes],
93          [fu_cv_sys_stat_statvfs64=no])
94       ])
95     if test $fu_cv_sys_stat_statvfs64 = yes; then
96       AC_DEFINE([STAT_STATVFS64], [1],
97                 [  Define if statvfs64 should be preferred over statvfs.])
98     else
99       AC_DEFINE([STAT_STATVFS], [1],
100                 [  Define if there is a function named statvfs.  (SVR4)])
101     fi
102   fi
105 # Check for this unconditionally so we have a
106 # good fallback on glibc/Linux > 2.6 < 2.6.36
107 AC_MSG_CHECKING([for two-argument statfs with statfs.f_frsize member])
108 AC_CACHE_VAL([fu_cv_sys_stat_statfs2_frsize],
109 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
110 #ifdef HAVE_SYS_PARAM_H
111 #include <sys/param.h>
112 #endif
113 #ifdef HAVE_SYS_MOUNT_H
114 #include <sys/mount.h>
115 #endif
116 #ifdef HAVE_SYS_VFS_H
117 #include <sys/vfs.h>
118 #endif
119   int
120   main ()
121   {
122   struct statfs fsd;
123   fsd.f_frsize = 0;
124   return statfs (".", &fsd) != 0;
125   }]])],
126   [fu_cv_sys_stat_statfs2_frsize=yes],
127   [fu_cv_sys_stat_statfs2_frsize=no],
128   [fu_cv_sys_stat_statfs2_frsize=no])])
129 AC_MSG_RESULT([$fu_cv_sys_stat_statfs2_frsize])
130 if test $fu_cv_sys_stat_statfs2_frsize = yes; then
131     ac_fsusage_space=yes
132     AC_DEFINE([STAT_STATFS2_FRSIZE], [1],
133 [  Define if statfs takes 2 args and struct statfs has a field named f_frsize.
134    (glibc/Linux > 2.6)])
137 if test $ac_fsusage_space = no; then
138   # DEC Alpha running OSF/1
139   AC_MSG_CHECKING([for 3-argument statfs function (DEC OSF/1)])
140   AC_CACHE_VAL([fu_cv_sys_stat_statfs3_osf1],
141   [AC_RUN_IFELSE([AC_LANG_SOURCE([[
142 #include <sys/param.h>
143 #include <sys/types.h>
144 #include <sys/mount.h>
145   int
146   main ()
147   {
148     struct statfs fsd;
149     fsd.f_fsize = 0;
150     return statfs (".", &fsd, sizeof (struct statfs)) != 0;
151   }]])],
152     [fu_cv_sys_stat_statfs3_osf1=yes],
153     [fu_cv_sys_stat_statfs3_osf1=no],
154     [fu_cv_sys_stat_statfs3_osf1=no])])
155   AC_MSG_RESULT([$fu_cv_sys_stat_statfs3_osf1])
156   if test $fu_cv_sys_stat_statfs3_osf1 = yes; then
157     ac_fsusage_space=yes
158     AC_DEFINE([STAT_STATFS3_OSF1], [1],
159               [   Define if  statfs takes 3 args.  (DEC Alpha running OSF/1)])
160   fi
163 if test $ac_fsusage_space = no; then
164   # glibc/Linux, Mac OS X, FreeBSD < 5.0, NetBSD < 3.0, OpenBSD < 4.4.
165   # (glibc/{Hurd,kFreeBSD}, FreeBSD >= 5.0, NetBSD >= 3.0,
166   # OpenBSD >= 4.4, AIX, HP-UX, OSF/1, Cygwin already handled above.)
167   # (On IRIX you need to include <sys/statfs.h>, not only <sys/mount.h> and
168   # <sys/vfs.h>.)
169   # (On Solaris, statfs has 4 arguments.)
170   AC_MSG_CHECKING([for two-argument statfs with statfs.f_bsize dnl
171 member (AIX, 4.3BSD)])
172   AC_CACHE_VAL([fu_cv_sys_stat_statfs2_bsize],
173   [AC_RUN_IFELSE([AC_LANG_SOURCE([[
174 #ifdef HAVE_SYS_PARAM_H
175 #include <sys/param.h>
176 #endif
177 #ifdef HAVE_SYS_MOUNT_H
178 #include <sys/mount.h>
179 #endif
180 #ifdef HAVE_SYS_VFS_H
181 #include <sys/vfs.h>
182 #endif
183   int
184   main ()
185   {
186   struct statfs fsd;
187   fsd.f_bsize = 0;
188   return statfs (".", &fsd) != 0;
189   }]])],
190     [fu_cv_sys_stat_statfs2_bsize=yes],
191     [fu_cv_sys_stat_statfs2_bsize=no],
192     [fu_cv_sys_stat_statfs2_bsize=no])])
193   AC_MSG_RESULT([$fu_cv_sys_stat_statfs2_bsize])
194   if test $fu_cv_sys_stat_statfs2_bsize = yes; then
195     ac_fsusage_space=yes
196     AC_DEFINE([STAT_STATFS2_BSIZE], [1],
197 [  Define if statfs takes 2 args and struct statfs has a field named f_bsize.
198    (4.3BSD, SunOS 4, HP-UX, AIX PS/2)])
199   fi
202 if test $ac_fsusage_space = no; then
203   # SVR3
204   # (Solaris already handled above.)
205   AC_MSG_CHECKING([for four-argument statfs (AIX-3.2.5, SVR3)])
206   AC_CACHE_VAL([fu_cv_sys_stat_statfs4],
207   [AC_RUN_IFELSE([AC_LANG_SOURCE([[
208 #include <sys/types.h>
209 #include <sys/statfs.h>
210   int
211   main ()
212   {
213   struct statfs fsd;
214   return statfs (".", &fsd, sizeof fsd, 0) != 0;
215   }]])],
216     [fu_cv_sys_stat_statfs4=yes],
217     [fu_cv_sys_stat_statfs4=no],
218     [fu_cv_sys_stat_statfs4=no])])
219   AC_MSG_RESULT([$fu_cv_sys_stat_statfs4])
220   if test $fu_cv_sys_stat_statfs4 = yes; then
221     ac_fsusage_space=yes
222     AC_DEFINE([STAT_STATFS4], [1],
223       [  Define if statfs takes 4 args.  (SVR3, Dynix, old Irix, old AIX, Dolphin)])
224   fi
227 if test $ac_fsusage_space = no; then
228   # 4.4BSD and older NetBSD
229   # (OSF/1 already handled above.)
230   # (On AIX, you need to include <sys/statfs.h>, not only <sys/mount.h>.)
231   # (On Solaris, statfs has 4 arguments and 'struct statfs' is not declared in
232   # <sys/mount.h>.)
233   AC_MSG_CHECKING([for two-argument statfs with statfs.f_fsize dnl
234 member (4.4BSD and NetBSD)])
235   AC_CACHE_VAL([fu_cv_sys_stat_statfs2_fsize],
236   [AC_RUN_IFELSE([AC_LANG_SOURCE([[
237 #include <sys/types.h>
238 #ifdef HAVE_SYS_PARAM_H
239 #include <sys/param.h>
240 #endif
241 #ifdef HAVE_SYS_MOUNT_H
242 #include <sys/mount.h>
243 #endif
244   int
245   main ()
246   {
247   struct statfs fsd;
248   fsd.f_fsize = 0;
249   return statfs (".", &fsd) != 0;
250   }]])],
251     [fu_cv_sys_stat_statfs2_fsize=yes],
252     [fu_cv_sys_stat_statfs2_fsize=no],
253     [fu_cv_sys_stat_statfs2_fsize=no])])
254   AC_MSG_RESULT([$fu_cv_sys_stat_statfs2_fsize])
255   if test $fu_cv_sys_stat_statfs2_fsize = yes; then
256     ac_fsusage_space=yes
257     AC_DEFINE([STAT_STATFS2_FSIZE], [1],
258 [  Define if statfs takes 2 args and struct statfs has a field named f_fsize.
259    (4.4BSD, NetBSD)])
260   fi
263 if test $ac_fsusage_space = no; then
264   # Ultrix
265   AC_MSG_CHECKING([for two-argument statfs with struct fs_data (Ultrix)])
266   AC_CACHE_VAL([fu_cv_sys_stat_fs_data],
267   [AC_RUN_IFELSE([AC_LANG_SOURCE([[
268 #include <sys/types.h>
269 #ifdef HAVE_SYS_PARAM_H
270 #include <sys/param.h>
271 #endif
272 #ifdef HAVE_SYS_MOUNT_H
273 #include <sys/mount.h>
274 #endif
275 #ifdef HAVE_SYS_FS_TYPES_H
276 #include <sys/fs_types.h>
277 #endif
278   int
279   main ()
280   {
281   struct fs_data fsd;
282   /* Ultrix's statfs returns 1 for success,
283      0 for not mounted, -1 for failure.  */
284   return statfs (".", &fsd) != 1;
285   }]])],
286     [fu_cv_sys_stat_fs_data=yes],
287     [fu_cv_sys_stat_fs_data=no],
288     [fu_cv_sys_stat_fs_data=no])])
289   AC_MSG_RESULT([$fu_cv_sys_stat_fs_data])
290   if test $fu_cv_sys_stat_fs_data = yes; then
291     ac_fsusage_space=yes
292     AC_DEFINE([STAT_STATFS2_FS_DATA], [1],
293 [  Define if statfs takes 2 args and the second argument has
294    type struct fs_data.  (Ultrix)])
295   fi
298 if test $ac_fsusage_space = no; then
299   # SVR2
300   # (AIX, HP-UX, OSF/1 already handled above.)
301   AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <sys/filsys.h>
302         ]])],
303     [AC_DEFINE([STAT_READ_FILSYS], [1],
304       [Define if there is no specific function for reading file systems usage
305        information and you have the <sys/filsys.h> header file.  (SVR2)])
306      ac_fsusage_space=yes])
309 AS_IF([test $ac_fsusage_space = yes], [$1], [$2])
314 # Check for SunOS statfs brokenness wrt partitions 2GB and larger.
315 # If <sys/vfs.h> exists and struct statfs has a member named f_spare,
316 # enable the work-around code in fsusage.c.
317 AC_DEFUN([gl_STATFS_TRUNCATES],
319   AC_MSG_CHECKING([for statfs that truncates block counts])
320   AC_CACHE_VAL([fu_cv_sys_truncating_statfs],
321   [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
322 #if !defined(sun) && !defined(__sun)
323 choke -- this is a workaround for a Sun-specific problem
324 #endif
325 #include <sys/types.h>
326 #include <sys/vfs.h>]],
327       [[struct statfs t; long c = *(t.f_spare);
328         if (c) return 0;]])],
329     [fu_cv_sys_truncating_statfs=yes],
330     [fu_cv_sys_truncating_statfs=no])])
331   if test $fu_cv_sys_truncating_statfs = yes; then
332     AC_DEFINE([STATFS_TRUNCATES_BLOCK_COUNTS], [1],
333       [Define if the block counts reported by statfs may be truncated to 2GB
334        and the correct values may be stored in the f_spare array.
335        (SunOS 4.1.2, 4.1.3, and 4.1.3_U1 are reported to have this problem.
336        SunOS 4.1.1 seems not to be affected.)])
337   fi
338   AC_MSG_RESULT([$fu_cv_sys_truncating_statfs])
342 # Prerequisites of lib/fsusage.c not done by gl_FILE_SYSTEM_USAGE.
343 AC_DEFUN([gl_PREREQ_FSUSAGE_EXTRA],
345   AC_CHECK_HEADERS([dustat.h sys/fs/s5param.h sys/filsys.h sys/statfs.h])
346   gl_STATFS_TRUNCATES