]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
configure: fix check for fuse_getgroups()
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Mon, 28 Jan 2013 15:33:42 +0000 (16:33 +0100)
committerSage Weil <sage@inktank.com>
Mon, 28 Jan 2013 21:56:32 +0000 (13:56 -0800)
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 <danny.al-gaaf@bisect.de>
configure.ac

index ffbd150502f0ed87635d76a1e671e0e6cc5cee40..cb49a0b2fe1250a66b7c1582fdd620bcf57c4672 100644 (file)
@@ -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])],