diff options
author | Not Zed <NotZed@Ximian.com> | 2004-06-01 18:02:48 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-06-01 18:02:48 +0800 |
commit | bffff379d074321fb69661aeaa2e2fe38c566810 (patch) | |
tree | 668e528658af3284ac4c579e9a1778f9e0bd2d7c /configure.in | |
parent | e0862e69a791b6eae6b35e6d93c28fdd2c92eee1 (diff) | |
download | gsoc2013-evolution-bffff379d074321fb69661aeaa2e2fe38c566810.tar.gz gsoc2013-evolution-bffff379d074321fb69661aeaa2e2fe38c566810.tar.zst gsoc2013-evolution-bffff379d074321fb69661aeaa2e2fe38c566810.zip |
check for statvfs.
2004-06-01 Not Zed <NotZed@Ximian.com>
* configure.in: check for statvfs.
svn path=/trunk/; revision=26138
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index d0048f34ac..5b99397127 100644 --- a/configure.in +++ b/configure.in @@ -262,10 +262,11 @@ if test "x$ac_cv_gethostbyaddr_r_seven_args" = "xyes" ; then fi dnl ************************************************** -dnl statfs location/type +dnl stat(v)fs location/type dnl ************************************************** -AC_CHECK_HEADERS(sys/vfs.h) +AC_CHECK_HEADERS(sys/statvfs.h) +AC_CHECK_FUNCS(statvfs) AC_CHECK_HEADERS(sys/param.h) AC_CHECK_HEADERS(sys/mount.h) AC_CHECK_FUNCS(statfs) |