From 066de4a8d396f65a9e87182f9dfb30d65a9e39ca Mon Sep 17 00:00:00 2001 From: Pavel Hrdina Date: Wed, 29 Jul 2020 14:16:58 +0200 Subject: [PATCH] meson: add driver_remote option only into meson_options.txt We cannot add the full option with the code in meson.build because it depends on xdr option which will be introduced later but we have to have the option present because it is used by libssh, libssh2 and sasl options so we need to break the circular dependency. Signed-off-by: Pavel Hrdina Reviewed-by: Peter Krempa Reviewed-by: Neal Gompa --- meson_options.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson_options.txt b/meson_options.txt index d5e723cd88..e8cda6b139 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -7,3 +7,7 @@ option('runstatedir', type: 'string', value: '', description: 'State directory f option('expensive_tests', type: 'feature', value: 'auto', description: 'set the default for enabling expensive tests (long timeouts), use VIR_TEST_EXPENSIVE to override') option('test_coverage', type: 'boolean', value: false, description: 'turn on code coverage instrumentation') option('git_werror', type: 'feature', value: 'auto', description: 'use -Werror if building from GIT') + + +# build driver options +option('driver_remote', type: 'feature', value: 'enabled', description: 'remote driver')