aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-12 11:31:24 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-12 11:31:24 +0800
commite406cdcf602c6580c7d129796a9a3a15818251f5 (patch)
treee85dc2a29c3f49af50631dc3428011c8751ff7d1 /configure.in
parent0bdbb230d227325cc474ca1cfb5215a2edd78ae2 (diff)
downloadgsoc2013-evolution-e406cdcf602c6580c7d129796a9a3a15818251f5.tar
gsoc2013-evolution-e406cdcf602c6580c7d129796a9a3a15818251f5.tar.gz
gsoc2013-evolution-e406cdcf602c6580c7d129796a9a3a15818251f5.tar.bz2
gsoc2013-evolution-e406cdcf602c6580c7d129796a9a3a15818251f5.tar.lz
gsoc2013-evolution-e406cdcf602c6580c7d129796a9a3a15818251f5.tar.xz
gsoc2013-evolution-e406cdcf602c6580c7d129796a9a3a15818251f5.tar.zst
gsoc2013-evolution-e406cdcf602c6580c7d129796a9a3a15818251f5.zip
add some stuff for statfs.
2004-05-12 Not Zed <NotZed@Ximian.com> * configure.in: add some stuff for statfs. * devel-docs/misc/errors.txt: updated for xml format and i18n changes. svn path=/trunk/; revision=25863
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 9a16913550..1592313039 100644
--- a/configure.in
+++ b/configure.in
@@ -262,6 +262,15 @@ if test "x$ac_cv_gethostbyaddr_r_seven_args" = "xyes" ; then
fi
dnl **************************************************
+dnl statfs location/type
+dnl **************************************************
+
+AC_CHECK_HEADERS(sys/vfs.h)
+AC_CHECK_HEADERS(sys/param.h)
+AC_CHECK_HEADERS(sys/mount.h)
+AC_CHECK_FUNCS(statfs)
+
+dnl **************************************************
dnl * Gnome Icon Theme
dnl **************************************************
PKG_CHECK_MODULES(GIT, gnome-icon-theme >= 1.2.0)