[libvirt] [PATCH 04/10] Ensure LXC driver links against libblkid explicitly.

Daniel P. Berrange berrange at redhat.com
Mon Apr 2 19:57:15 UTC 2012


From: "Daniel P. Berrange" <berrange at redhat.com>

Only libvirt_driver_storage.la links to libblkid currently. If
we are running in a scenario with driver modules, LXC must
directly link to it, since it can't assume the storage driver
is present

Signed-off-by: Daniel P. Berrange <berrange at redhat.com>
---
 src/Makefile.am |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index b677492..2d4636e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -788,6 +788,10 @@ endif
 libvirt_driver_lxc_la_CFLAGS = \
 		-I$(top_srcdir)/src/conf $(AM_CFLAGS)
 libvirt_driver_lxc_la_LIBADD = $(CAPNG_LIBS)
+if HAVE_LIBBLKID
+libvirt_driver_lxc_la_CFLAGS += $(BLKID_CFLAGS)
+libvirt_driver_lxc_la_LIBADD += $(BLKID_LIBS)
+endif
 if WITH_SECDRIVER_SELINUX
 libvirt_driver_lxc_la_LIBADD += $(SELINUX_LIBS)
 endif
-- 
1.7.7.6




More information about the libvir-list mailing list