summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorjacob berkman <jacob@ximian.com>2002-07-11 17:11:51 +0000
committerJacob Berkman <jberkman@src.gnome.org>2002-07-11 17:11:51 +0000
commitc685554d18519e75a3308656583e0b93aa384275 (patch)
tree2a6846331078477017298c6942f1879a3a615cef /configure.in
parent6e83617cfae34f094340fdbdc6fa41b5e56a8ce7 (diff)
downloadnautilus-c685554d18519e75a3308656583e0b93aa384275.tar.gz
use a macro to portably access the fs type (fixes bug #87889)
2002-07-11 jacob berkman <jacob@ximian.com> * libnautilus-private/nautilus-volume-monitor.c (entry_is_supermounted_volume): (has_removable_mntent_options): use a macro to portably access the fs type (fixes bug #87889) (entry_is_supermounted_volume): #ifdef HAVE_HASMNTOPT around the body of this (get_removable_volumes): fix typos etc. when HAVE_GETMNTINFO is defined * configure.in: add checks for getmntinfo and sys/mount.h so that bsd mount code paths actually get built / run
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index bab5f52fb..7878d61c8 100644
--- a/configure.in
+++ b/configure.in
@@ -99,8 +99,8 @@ AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal)
dnl ==========================================================================
-AC_CHECK_FUNCS(setmntent endmntent hasmntopt)
-AC_CHECK_HEADERS(mntent.h sys/mnttab.h sys/vfstab.h sys/cdio.h)
+AC_CHECK_FUNCS(setmntent endmntent hasmntopt getmntinfo)
+AC_CHECK_HEADERS(mntent.h sys/mnttab.h sys/vfstab.h sys/cdio.h sys/mount.h)
dnl ==========================================================================