From: Pavel Hrdina Date: Wed, 29 Jul 2020 12:16:58 +0000 (+0200) Subject: meson: add driver_remote option only into meson_options.txt X-Git-Tag: v6.7.0-rc1~571 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=066de4a8d396f65a9e87182f9dfb30d65a9e39ca;p=thirdparty%2Flibvirt.git 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 --- 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')