aboutsummaryrefslogtreecommitdiff
path: root/migration
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-10-13 11:43:54 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2022-02-21 10:35:53 +0100
commit406523f6b3e0482c2b3be571db7e979473d09d12 (patch)
treed488da1026d4fc290f09cf461916c1cd561b5fd5 /migration
parented793c2c455e1c376ae271d8acc5ac40221ecfd1 (diff)
downloadqemu-406523f6b3e0482c2b3be571db7e979473d09d12.zip
qemu-406523f6b3e0482c2b3be571db7e979473d09d12.tar.gz
qemu-406523f6b3e0482c2b3be571db7e979473d09d12.tar.bz2
configure, meson: move block layer options to meson_options.txt
Unlike image formats, these also require an entry in config-host.h. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'migration')
-rw-r--r--migration/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/migration/meson.build b/migration/meson.build
index f8714dc..8b5ca5c 100644
--- a/migration/meson.build
+++ b/migration/meson.build
@@ -28,7 +28,9 @@ softmmu_ss.add(files(
), gnutls)
softmmu_ss.add(when: ['CONFIG_RDMA', rdma], if_true: files('rdma.c'))
-softmmu_ss.add(when: 'CONFIG_LIVE_BLOCK_MIGRATION', if_true: files('block.c'))
+if get_option('live_block_migration').allowed()
+ softmmu_ss.add(files('block.c'))
+endif
softmmu_ss.add(when: zstd, if_true: files('multifd-zstd.c'))
specific_ss.add(when: 'CONFIG_SOFTMMU',