From 657263fbc6a1cc466c7bbfe05a18440d6c85196e Mon Sep 17 00:00:00 2001 From: Pavel Hrdina Date: Mon, 3 Aug 2020 20:59:42 +0200 Subject: [PATCH] meson_options: change default value to auto for driver_esx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported-by: Daniel P. Berrangé Signed-off-by: Pavel Hrdina Reviewed-by: Daniel P. Berrangé --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index a1bb6505b8..1313effd09 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -48,7 +48,7 @@ option('yajl', type: 'feature', value: 'auto', description: 'yajl support') # build driver options option('driver_bhyve', type: 'feature', value: 'auto', description: 'bhyve driver') -option('driver_esx', type: 'feature', value: 'enabled', description: 'esx driver') +option('driver_esx', type: 'feature', value: 'auto', description: 'esx driver') option('driver_hyperv', type: 'feature', value: 'auto', description: 'Hyper-V driver') option('driver_interface', type: 'feature', value: 'auto', description: 'host interface driver') option('driver_libvirtd', type: 'feature', value: 'auto', description: 'libvirtd driver')