diff options
author | Akira TAGOH <akira@tagoh.org> | 2014-02-06 17:29:19 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2014-02-06 17:29:19 +0900 |
commit | 7d75653285a3cd67b5f066fe899821462d7f324f (patch) | |
tree | 1a16527a9cfc32f5ef172b296eee6486362ad1e5 | |
parent | 787619b2c7bfbdc91ed170381f28003e86679c99 (diff) |
Add missing #include <sys/statvfs.h> in fcstat.c
https://bugs.freedesktop.org/show_bug.cgi?id=74602
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/fcstat.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 89fe117c..331bd32a 100644 --- a/configure.ac +++ b/configure.ac @@ -138,7 +138,7 @@ dnl ========================================================================== # Checks for header files. AC_HEADER_DIRENT AC_HEADER_STDC -AC_CHECK_HEADERS([fcntl.h regex.h stdlib.h string.h unistd.h sys/vfs.h sys/statfs.h sys/param.h sys/mount.h]) +AC_CHECK_HEADERS([fcntl.h regex.h stdlib.h string.h unistd.h sys/statvfs.h sys/vfs.h sys/statfs.h sys/param.h sys/mount.h]) AX_CREATE_STDINT_H([src/fcstdint.h]) # Checks for typedefs, structures, and compiler characteristics. diff --git a/src/fcstat.c b/src/fcstat.c index ff8e8845..f384767c 100644 --- a/src/fcstat.c +++ b/src/fcstat.c @@ -30,6 +30,9 @@ #ifdef HAVE_SYS_VFS_H #include <sys/vfs.h> #endif +#ifdef HAVE_SYS_STATVFS_H +#include <sys/statvfs.h> +#endif #ifdef HAVE_SYS_STATFS_H #include <sys/statfs.h> #endif |