blob: d0a58041fab5fca660825f625db898434f1bc6b0 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001[PATCH] conditionally check libvirt
2
3Upstream-Statue: Pending
4
5check if libvirt is available only when a user wants to use libvirt
6
7Signed-off-by: Roy Li <rongqing.li@windriver.com>
8---
9 configure.ac | 14 ++++++++------
10 1 file changed, 8 insertions(+), 6 deletions(-)
11
12diff --git a/configure.ac b/configure.ac
13index 923498e..7206095 100644
14--- a/configure.ac
15+++ b/configure.ac
16@@ -4778,12 +4778,14 @@ then
17 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
18 fi
19
20- $PKG_CONFIG --exists libvirt 2>/dev/null
21- if test "$?" = "0"
22- then
23- with_libvirt="yes"
24- else
25- with_libvirt="no (pkg-config doesn't know libvirt)"
26+ if test "x$enable_libvirt" = "xyes"; then
27+ $PKG_CONFIG --exists libvirt 2>/dev/null
28+ if test "$?" = "0"
29+ then
30+ with_libvirt="yes"
31+ else
32+ with_libvirt="no (pkg-config doesn't know libvirt)"
33+ fi
34 fi
35 fi
36 if test "x$with_libxml2" = "xyes"
37--
381.9.1
39