From: Roman Bogorodskiy Date: Tue, 10 Jun 2014 18:25:10 +0000 (+0400) Subject: virsh: include bhyve in virsh -V output X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=aec0c6d3d50f2ac107f755f15883a9cd6d9bf56d;p=libvirt.git virsh: include bhyve in virsh -V output Add 'Bhyve' in hypervisor list reported by 'virsh -V' if it's compiled it. --- diff --git a/tools/virsh.c b/tools/virsh.c index 15f30252d1..828d585a59 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -3233,6 +3233,9 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED) #ifdef WITH_XENAPI vshPrint(ctl, " XenAPI"); #endif +#ifdef WITH_BHYVE + vshPrint(ctl, " Bhyve"); +#endif #ifdef WITH_TEST vshPrint(ctl, " Test"); #endif