aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in5
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 66e0695cee..b709999f5c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-06-01 Not Zed <NotZed@Ximian.com>
+
+ * configure.in: check for statvfs.
+
2004-05-24 Chris Toshok <toshok@ximian.com>
* configure.in: add addressbook/tools/Makefile.am back to the
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)