---
configure.ac | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 412fdb8..7940ef0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1499,7 +1499,9 @@ AC_SUBST([NETCF_CFLAGS])
AC_SUBST([NETCF_LIBS])
-with_secrets=yes
+AC_ARG_WITH([secrets],
+ AC_HELP_STRING([--with-secrets], [with local secrets management driver
@<:@default=yes@:>@]),[],[with_secrets=yes])
+
if test "$with_libvirtd" = "no"; then
with_secrets=no
fi
@@ -1509,6 +1511,8 @@ fi
AM_CONDITIONAL([WITH_SECRETS], [test "$with_secrets" = "yes"])
+AC_ARG_WITH([storage-dir],
+ AC_HELP_STRING([--with-storage-dir], [with directory backend for the storage driver
@<:@default=yes@:>@]),[],[with_storage_dir=yes])
AC_ARG_WITH([storage-fs],
AC_HELP_STRING([--with-storage-fs], [with FileSystem backend for the storage driver
@<:@default=check@:>@]),[],[with_storage_fs=check])
AC_ARG_WITH([storage-lvm],
@@ -1522,7 +1526,6 @@ AC_ARG_WITH([storage-mpath],
AC_ARG_WITH([storage-disk],
AC_HELP_STRING([--with-storage-disk], [with GPartd Disk backend for the storage driver
@<:@default=check@:>@]),[],[with_storage_disk=check])
-with_storage_dir=yes
if test "$with_libvirtd" = "no"; then
with_storage_dir=no
with_storage_fs=no
--
1.7.0.4
Show replies by date
2011/5/24 Daniel Veillard <veillard(a)redhat.com>:
On Tue, May 24, 2011 at 01:21:51PM +0200, Matthias Bolte wrote:
> ---
> configure.ac | 7 +++++--
> 1 files changed, 5 insertions(+), 2 deletions(-)
>
Okay, ACK,
Daniel
Thanks, pushed.
Matthias