]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
meson: add driver_remote option only into meson_options.txt
authorPavel Hrdina <phrdina@redhat.com>
Wed, 29 Jul 2020 12:16:58 +0000 (14:16 +0200)
committerPavel Hrdina <phrdina@redhat.com>
Mon, 3 Aug 2020 07:26:59 +0000 (09:26 +0200)
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 <phrdina@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Neal Gompa <ngompa13@gmail.com>
meson_options.txt

index d5e723cd88d0b9745d3f4156a1ffadf24afaf9f3..e8cda6b1399177a3812fecb8d5941214da2ab219 100644 (file)
@@ -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')