diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-10-05 14:31:27 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-10-17 15:20:53 +0200 |
commit | 230f6e06b83474314898f27c0a7b2f0593071875 (patch) | |
tree | e284eff89e498a4a22c95ab40a0b1c48173bef0b /meson.build | |
parent | 9bad39c7e86a7fea05b66e7d3425f5874b3bbcfb (diff) | |
download | qemu-230f6e06b83474314898f27c0a7b2f0593071875.zip qemu-230f6e06b83474314898f27c0a7b2f0593071875.tar.gz qemu-230f6e06b83474314898f27c0a7b2f0593071875.tar.bz2 |
meson: do not use set10
Make all items of config-host.h consistent. To keep the --disable-coroutine-pool
code visible to the compiler, mutuate the IS_ENABLED() macro from Linux.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index bd65a11..010d2c6 100644 --- a/meson.build +++ b/meson.build @@ -2194,7 +2194,7 @@ if get_option('debug_stack_usage') and have_coroutine_pool message('Disabling coroutine pool to measure stack usage') have_coroutine_pool = false endif -config_host_data.set10('CONFIG_COROUTINE_POOL', have_coroutine_pool) +config_host_data.set('CONFIG_COROUTINE_POOL', have_coroutine_pool) config_host_data.set('CONFIG_DEBUG_GRAPH_LOCK', get_option('debug_graph_lock')) config_host_data.set('CONFIG_DEBUG_MUTEX', get_option('debug_mutex')) config_host_data.set('CONFIG_DEBUG_STACK_USAGE', get_option('debug_stack_usage')) |