blob: 1ceacd8c40e69130406e6790c73d1b5910375521 [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
Brad Bishop6e60e8b2018-02-01 10:27:11 -050012Index: collectd-5.7.1/configure.ac
13===================================================================
14--- collectd-5.7.1.orig/configure.ac
15+++ collectd-5.7.1/configure.ac
16@@ -5556,12 +5556,14 @@ else
17 with_libxml2="no (pkg-config doesn't know libxml-2.0)"
18 fi
Patrick Williamsb48b7b42016-08-17 15:04:38 -050019
Brad Bishop6e60e8b2018-02-01 10:27:11 -050020-$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
Patrick Williamsb48b7b42016-08-17 15:04:38 -050034 fi
35 if test "x$with_libxml2" = "xyes"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050036 then