Rename HAVE_FUSE to WITH_FUSE

This commit is contained in:
Daniel P. Berrange 2013-01-08 21:04:35 +00:00
parent bccd4a8cbc
commit 8c1e9be48f
4 changed files with 5 additions and 5 deletions

View File

@ -1440,7 +1440,7 @@ AS_IF([test "x$with_fuse" != "xno"],
[with_fuse=yes
AC_SUBST([FUSE_CFLAGS])
AC_SUBST([FUSE_LIBS])
AC_DEFINE_UNQUOTED([HAVE_FUSE], 1, [whether fuse is available for libvirt lxc])
AC_DEFINE_UNQUOTED([WITH_FUSE], 1, [whether fuse is available for libvirt lxc])
],
[if test "x$with_fuse" = "xyes" ; then
AC_MSG_ERROR([You must install fuse library to compile libvirt])
@ -1449,7 +1449,7 @@ AS_IF([test "x$with_fuse" != "xno"],
fi
])
])
AM_CONDITIONAL([HAVE_FUSE], [test "x$with_fuse" = "xyes"])
AM_CONDITIONAL([WITH_FUSE], [test "x$with_fuse" = "xyes"])
dnl virsh libraries
AC_CHECK_HEADERS([readline/readline.h])

View File

@ -596,7 +596,7 @@ cleanup:
return rc;
}
#if HAVE_FUSE
#if WITH_FUSE
static int lxcContainerMountProcFuse(virDomainDefPtr def,
const char *srcprefix)
{

View File

@ -38,7 +38,7 @@
#define VIR_FROM_THIS VIR_FROM_LXC
#if HAVE_FUSE
#if WITH_FUSE
static const char *fuse_meminfo_path = "/meminfo";

View File

@ -27,7 +27,7 @@
# define FUSE_USE_VERSION 26
# include <config.h>
# if HAVE_FUSE
# if WITH_FUSE
# include <fuse.h>
# endif