diff options
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 41 | 
1 files changed, 1 insertions, 40 deletions
diff --git a/configure.ac b/configure.ac index 71f663fa710..0347eb075c6 100644 --- a/configure.ac +++ b/configure.ac @@ -206,47 +206,8 @@ AC_ARG_ENABLE([fuse-client],  	      AC_HELP_STRING([--disable-fuse-client],  			     [Do not build the fuse client. NOTE: you cannot mount glusterfs without the client])) -if test "x$enable_fuse_client" != "xno"; then -   AC_CHECK_LIB([fuse], -                 [fuse_req_interrupt_func], -	         [HAVE_LIBFUSE="yes"], -	         [HAVE_LIBFUSE="no"]) - -   if test "x$HAVE_LIBFUSE" = "xyes"; then -      AC_TRY_COMPILE([#define FUSE_USE_VERSION 26  -                      #define _FILE_OFFSET_BITS 64  -                      #include <fuse.h>], -		      #define _GLFS_FUSE_VERSION_28 28 -       	 	      #if (FUSE_VERSION < _GLFS_FUSE_VERSION_28) -                      #error "fuse version 2.8 not found"  -		      #endif -		      , -		     [HAVE_FUSE_VERSION_28="yes"], -		     [HAVE_FUSE_VERSION_28="no"]) - -      AC_CHECK_LIB([fuse], -                    [fuse_reply_iov], -	            [HAVE_FUSE_REPLY_IOV="yes"], -	            [HAVE_FUSE_REPLY_IOV="no"]) - -   fi      -fi - -if test "x$HAVE_FUSE_REPLY_IOV" = "xyes"; then -   AC_DEFINE(HAVE_FUSE_REPLY_IOV, 1, [found fuse_reply_iov]) -fi - -if test "x$HAVE_LIBFUSE" = "xyes" -a "x$HAVE_FUSE_VERSION_28" = "xyes"; then -   AC_DEFINE(HAVE_FUSE_VERSION_28, 1, [found fuse 2.8 version]) -fi - -if test "x$enable_fuse_client" = "xyes" -a "x$HAVE_LIBFUSE" = "xno"; then -   echo "FUSE requested but not found." -   exit 1 -fi -  BUILD_FUSE_CLIENT=no -if test "x$enable_fuse_client" != "xno" -a "x$HAVE_LIBFUSE" = "xyes"; then +if test "x$enable_fuse_client" != "xno"; then     FUSE_CLIENT_SUBDIR=fuse     BUILD_FUSE_CLIENT="yes"  fi  | 
