From: Danny Al-Gaaf Date: Mon, 28 Jan 2013 15:33:42 +0000 (+0100) Subject: configure: fix check for fuse_getgroups() X-Git-Tag: v0.57~97 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f74265b08ab3679bb28a913ab436d185ea37ea9b;p=ceph.git configure: fix check for fuse_getgroups() Check for fuse_getgroups() only in case we have found libfuse already. Moved the check to the check for --with-fuse. Small fix: fix string for NO_ATOMIC_OPS, don't use "'". Signed-off-by: Danny Al-Gaaf --- diff --git a/configure.ac b/configure.ac index ffbd150502f0..cb49a0b2fe12 100644 --- a/configure.ac +++ b/configure.ac @@ -241,6 +241,8 @@ AS_IF([test "x$with_fuse" != xno], AC_DEFINE([HAVE_LIBFUSE], [1], [Define if you have fuse]) HAVE_LIBFUSE=1 + # look for fuse_getgroups and define FUSE_GETGROUPS if found + AC_CHECK_FUNCS([fuse_getgroups]) ], [AC_MSG_FAILURE( [no FUSE found (use --without-fuse to disable)])])]) @@ -391,7 +393,8 @@ AS_IF([test "x$with_libatomic_ops" != xno], ])]) AS_IF([test "$HAVE_ATOMIC_OPS" = "1"], [], - AC_DEFINE([NO_ATOMIC_OPS], [1], [Defined if you don't have atomic_ops])) + [AC_DEFINE([NO_ATOMIC_OPS], [1], [Defined if you do not have atomic_ops])]) + AM_CONDITIONAL(WITH_LIBATOMIC, [test "$HAVE_ATOMIC_OPS" = "1"]) # newsyn? requires mpi. @@ -417,9 +420,6 @@ AS_IF([test "x$with_system_leveldb" = xcheck], [AC_CHECK_LIB([leveldb], [leveldb_open], [with_system_leveldb=yes], [], [-lsnappy -lpthread])]) AM_CONDITIONAL(WITH_SYSTEM_LEVELDB, [ test "$with_system_leveldb" = "yes" ]) -# look for fuse_getgroups and define FUSE_GETGROUPS if found -AC_CHECK_FUNCS([fuse_getgroups]) - # use system libs3? AC_ARG_WITH([system-libs3], [AS_HELP_STRING([--with-system-libs3], [use system libs3])],