From 91b02583db1f16b96e005180eee9ffcd0345b7bc Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 28 Jan 2014 10:59:57 +0100 Subject: build: enable fusermount by default The fusermount available in gluster is customized to ensure mounting with SELinux happens properly, i.e - to have a separate thread for fuse_thread_proc which can process getxattr requests and in parallel perform sys_mount() in a different thread, thereby avoiding a deadlock. However our build and packaging defaults to not including our fusermount. This patch reverses the defaults. Backport from: > Change-Id: I793af4c2f56aeac46efae3db30e7c64ee7c18850 > BUG: 811217 > Signed-off-by: Anand Avati > Reviewed-on: http://review.gluster.org/4773 > Reviewed-by: Jeff Darcy > Tested-by: Gluster Build System Change-Id: If5fb368b6737fe8b6f22d2f2aa0785baa7f96364 BUG: 1058666 Signed-off-by: Niels de Vos Reviewed-on: http://review.gluster.org/6831 Tested-by: Gluster Build System Reviewed-by: Justin Clift Tested-by: Justin Clift Reviewed-by: Vijay Bellur --- glusterfs.spec.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'glusterfs.spec.in') diff --git a/glusterfs.spec.in b/glusterfs.spec.in index c5ab0fc16..75a05d9f9 100644 --- a/glusterfs.spec.in +++ b/glusterfs.spec.in @@ -18,9 +18,9 @@ # rpmbuild -ta @PACKAGE_NAME@-@PACKAGE_VERSION@.tar.gz --without epoll %{?_without_epoll:%global _without_epoll --disable-epoll} -# if you wish to compile an rpm with fusermount... -# rpmbuild -ta @PACKAGE_NAME@-@PACKAGE_VERSION@.tar.gz --with fusermount -%{?_with_fusermount:%global _with_fusermount --enable-fusermount} +# if you wish to compile an rpm without fusermount... +# rpmbuild -ta @PACKAGE_NAME@-@PACKAGE_VERSION@.tar.gz --without fusermount +%{?_without_fusermount:%global _without_fusermount --disable-fusermount} %global version @PACKAGE_VERSION@ %if "%{version}" >= "3.2" @@ -179,7 +179,7 @@ This package provides the development libraries. %build ./autogen.sh -%configure %{?_without_rdma} %{?_without_epoll} %{?_with_fusermount} %{?_without_georeplication} +%configure %{?_without_rdma} %{?_without_epoll} %{?_without_fusermount} %{?_without_georeplication} # Remove rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -317,7 +317,7 @@ fi %{_libdir}/glusterfs/%{version}/xlator/mount/fuse* #%{_mandir}/man8/mount.glusterfs.8* /sbin/mount.glusterfs -%if 0%{?_with_fusermount:1} +%if 0%{!?_without_fusermount:1} %{_bindir}/fusermount-glusterfs %endif -- cgit