[libvirt] [libvirt-glib] libvirt dependency needs to be bumped

Hey guys, It seems libvirt-glib requires VIR_DOMAIN_EVENT_SHUTDOWN which was only added in libvirt-0.9.8[1]. Hence, configure.ac needs LIBVIRT_REQUIRED=0.9.8 otherwise the build fails in make instead of in configure. Thanks! 1. 38527c9ae0d398a996e1e3c0897a104e3ffd1256 in libvirt.git -- ~Nirbheek Chauhan Gentoo GNOME+Mozilla Team

We are using VIR_DOMAIN_EVENT_SHUTDOWN which was introduced in libvirt 0.9.8. Reflect this requirement by bumping the minimum version of libvirt we require in configure.ac. This issue was reported by Nirbheek Chauhan <nirbheek@gentoo.org> --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 86e2d7f..79a6eff 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ AC_CANONICAL_HOST AM_SILENT_RULES([yes]) -LIBVIRT_REQUIRED=0.9.7 +LIBVIRT_REQUIRED=0.9.8 GLIB2_REQUIRED=2.10.0 GOBJECT2_REQUIRED=2.10.0 GIO_REQUIRED=2.10.0 -- 1.7.7.5

On Mon, Jan 16, 2012 at 11:37:27AM +0100, Christophe Fergeau wrote:
We are using VIR_DOMAIN_EVENT_SHUTDOWN which was introduced in libvirt 0.9.8. Reflect this requirement by bumping the minimum version of libvirt we require in configure.ac. This issue was reported by Nirbheek Chauhan <nirbheek@gentoo.org> --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac index 86e2d7f..79a6eff 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ AC_CANONICAL_HOST
AM_SILENT_RULES([yes])
-LIBVIRT_REQUIRED=0.9.7 +LIBVIRT_REQUIRED=0.9.8 GLIB2_REQUIRED=2.10.0 GOBJECT2_REQUIRED=2.10.0 GIO_REQUIRED=2.10.0
Trivial, ACK Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://autobuild.org -o- http://search.cpan.org/~danberr/ :| |: http://entangle-photo.org -o- http://live.gnome.org/gtk-vnc :|
participants (3)
-
Christophe Fergeau
-
Daniel P. Berrange
-
Nirbheek Chauhan