Hey,
On Wed, Aug 17, 2016 at 06:58:46PM +0300, Visarion Alexandru wrote:
From: Visarion Alexandru <viorel.visarion(a)gmail.com>
We will need a GInetAddress for setting a graphics device's
listen address, so let's include GIO2 in libvirt-gconfig.
---
configure.ac | 2 ++
libvirt-gconfig-1.0.pc.in | 2 +-
libvirt-gconfig/Makefile.am | 6 ++++--
vapi/Makefile.am | 1 +
4 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index 8edde74..647a5ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -112,6 +112,8 @@ PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_TEST_REQUIRED,
PKG_CHECK_MODULES(GTHREAD2, gthread-2.0 >= $GLIB2_REQUIRED)
PKG_CHECK_MODULES(GOBJECT2, gobject-2.0 >= $GLIB2_REQUIRED)
PKG_CHECK_MODULES(GIO2, gio-2.0 >= $GLIB2_REQUIRED)
+AC_SUBST(GIO2_CFLAGS)
+AC_SUBST(GIO2_LIBS)
This is not needed, PKG_CHECK_MODULES() already does it for you (I've
fixed it locally, so no need to resend a patch).
Acked-by: Christophe Fergeau <cfergeau(a)redhat.com>
Christophe