From 1a9aa565b38eafe48621bc2fe42d35ea6a907708 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 2 Aug 2010 16:33:25 +0100 Subject: fish: Add -c/--connect and -d/--domain options. The -d option lets you specify libvirt domains. The disks from these domains are found and added, as if you'd named them with -a. The -c option lets you specify a libvirt URI, which is needed when we consult libvirt to implement the above. --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index e04357dd..192e0344 100644 --- a/configure.ac +++ b/configure.ac @@ -468,6 +468,16 @@ AC_CHECK_HEADER([magic.h],[],[ AC_MSG_FAILURE([magic.h header file is required]) ]) +dnl libvirt (required) +PKG_CHECK_MODULES([LIBVIRT], [libvirt]) +AC_SUBST([LIBVIRT_CFLAGS]) +AC_SUBST([LIBVIRT_LIBS]) + +dnl libxml2 (required) +PKG_CHECK_MODULES([LIBXML2], [libxml-2.0]) +AC_SUBST([LIBXML2_CFLAGS]) +AC_SUBST([LIBXML2_LIBS]) + dnl hivex library (highly recommended). dnl This used to be a part of libguestfs, but was spun off into its dnl own separate upstream project in libguestfs 1.0.85. -- cgit