libvirt >= 0.10.2 required for libvirt backend.

This commit is contained in:
Richard W.M. Jones
2012-09-24 21:25:31 +01:00
parent c9cccb776e
commit b3bf53714b
2 changed files with 2 additions and 2 deletions

2
README
View File

@@ -76,7 +76,7 @@ For basic functionality and the C tools:
- libmagic (the library that corresponds to the 'file' command) (optional)
- libvirt (optional, >= 0.10.0 to use the libvirt launch method)
- libvirt (optional, >= 0.10.2 to use the libvirt launch method)
- libxml2 (optional)

View File

@@ -60,7 +60,7 @@
*/
#define MIN_LIBVIRT_MAJOR 0
#define MIN_LIBVIRT_MINOR 10
#define MIN_LIBVIRT_MICRO 0
#define MIN_LIBVIRT_MICRO 2 /* XXX patches in > 2 already */
#define MIN_LIBVIRT_VERSION (MIN_LIBVIRT_MAJOR * 1000000 + \
MIN_LIBVIRT_MINOR * 1000 + \
MIN_LIBVIRT_MICRO)