summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarshavardhana <harsha@zresearch.com>2009-07-01 04:13:23 +0000
committerAnand V. Avati <avati@dev.gluster.com>2009-07-01 18:32:22 -0700
commit545d3d6b48f68251bf0912473bd3de5c0e593883 (patch)
treea87578ba6b47158fc8cb9b234336428996cd3fef
parent02246561759d9897e3bb04118df0f0e4a0028229 (diff)
fuse 2.8 version check at configure level
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
-rw-r--r--configure.ac19
1 files changed, 18 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 217102d54..277f36615 100644
--- a/configure.ac
+++ b/configure.ac
@@ -292,7 +292,6 @@ AC_SUBST(MOD_GLUSTERFS_HTTPD_VERSION)
# FUSE section
-# TODO: make a clean version check of libfuse
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]))
@@ -302,6 +301,24 @@ if test "x$enable_fuse_client" != "xno"; then
[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"])
+ fi
+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