From 0cac194a149871999072e8573d7eccc4b4723e0c Mon Sep 17 00:00:00 2001 From: Pavan Sondur Date: Wed, 2 Dec 2009 18:19:53 +0000 Subject: Disable fusermount by default in configure.ac. Signed-off-by: Pavan Vilas Sondur Signed-off-by: Anand V. Avati BUG: 343 (Placeholder bug for adding volgen into rpm, bdb makefile changes, etc) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=343 --- configure.ac | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 43d3504a38d..556f809ab4a 100644 --- a/configure.ac +++ b/configure.ac @@ -227,12 +227,11 @@ AC_SUBST(FUSE_CLIENT_SUBDIR) # FUSERMOUNT section AC_ARG_ENABLE([fusermount], - AC_HELP_STRING([--disable-fusermount], + AC_HELP_STRING([--enable-fusermount], [Do not build fusermount])) BUILD_FUSERMOUNT="no" - -if test "x$enable_fusermount" != "xno"; then +if test "x$enable_fusermount" = "xyes"; then FUSERMOUNT_SUBDIR="contrib" BUILD_FUSERMOUNT="yes" AC_DEFINE(GF_FUSERMOUNT, 1, [Use our own fusermount]) -- cgit