From 9cd4903a9cbf7c806c35e70b79493df75f075c2d Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 30 Jul 2012 10:18:59 +0000 Subject: [PATCH] disable eeze mount by default and prevent it from building if other mount backends are detected this was never meant to be a robust and widely-used mounting solution; it's only intended for single user systems and should be used only on those systems SVN revision: 74574 --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index c6f9d731e..c1861202f 100644 --- a/configure.ac +++ b/configure.ac @@ -382,21 +382,21 @@ fi if test "x${e_cv_want_mount_udisks}" = "xno" && test "x${e_cv_want_mount_hal}" = "xno" ; then DBUS_MOUNT_CONFIG=0 dbus_mount= - test "x${e_cv_want_mount_udisks}" = "xno" && udisks_mount= - test "x${e_cv_want_mount_hal}" = "xno" && hal_mount= + udisks_mount= + hal_mount= fi AC_ARG_ENABLE([mount-eeze], - AS_HELP_STRING([--enable-mount-eeze],[enable eeze mounting support @<:@default=enabled@:>@]), + AS_HELP_STRING([--enable-mount-eeze],[enable eeze mounting support @<:@default=disabled@:>@]), [e_cv_want_mount_eeze=$enableval], - [e_cv_want_mount_eeze=yes]) + [e_cv_want_mount_eeze=no]) AC_MSG_CHECKING([whether the Eeze mounting support is enabled]) AC_MSG_RESULT([${e_cv_want_mount_eeze}]) eeze_mount= EEZE_MOUNT_CONFIG=0 -if test "x$e_cv_want_mount_eeze" != "xno" ; then +if test "x$e_cv_want_mount_eeze" != "xno" && test -z "$dbus_mount" ; then CPPFLAGS_save="$CPPFLAGS" LIBS_save="$LIBS" CPPFLAGS="$EEZE_CFLAGS $CPPFLAGS"