virsh: include bhyve in virsh -V output

Add 'Bhyve' in hypervisor list reported by 'virsh -V'
if it's compiled it.
This commit is contained in:
Roman Bogorodskiy 2014-06-10 22:25:10 +04:00
parent a93504cca4
commit aec0c6d3d5

View File

@ -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