[libvirt] [PATCH 5/1] build: network requires location of dbus headers

Eric Blake eblake at redhat.com
Tue Aug 21 20:26:43 UTC 2012


Without this patch, RHEL 5 fails to compile, since the dbus
files lives under /usr/include/dbus-1.0/dbus/dbus.h, and
DBUS_CFLAGS contains -I/usr/include/dbus-1.0.

In file included from network/bridge_driver.c:67:
../src/util/virdbus.h:26:25: error: dbus/dbus.h: No such file or directory

* src/Makefile.am (libvirt_driver_network_impl_la_CFLAGS): Add
DBUS_CFLAGS.
---
 src/Makefile.am      |  2 +-
 src/util/viratomic.h | 14 +++++++-------
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index 61b6e09..39cbefd 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1006,7 +1006,7 @@ noinst_LTLIBRARIES += libvirt_driver_network.la
 endif

 libvirt_driver_network_impl_la_CFLAGS = \
-		$(LIBNL_CFLAGS) \
+		$(LIBNL_CFLAGS) $(DBUS_CFLAGS) \
 		-I$(top_srcdir)/src/conf $(AM_CFLAGS) $(DBUS_CFLAGS)
 libvirt_driver_network_impl_la_SOURCES = $(NETWORK_DRIVER_SOURCES)
 endif
-- 
1.7.11.4




More information about the libvir-list mailing list