aboutsummaryrefslogtreecommitdiff
path: root/qapi
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2021-02-24 18:16:42 +0100
committerMarkus Armbruster <armbru@redhat.com>2021-03-05 15:40:49 +0100
commita0e61807a3492b57f10d78e97fed97a0d3b21933 (patch)
tree8bad6852fc88d449a3d6c4336118a00f725dbf45 /qapi
parent96291f13434e3f179744fec549ada90a9411fef0 (diff)
downloadqemu-a0e61807a3492b57f10d78e97fed97a0d3b21933.zip
qemu-a0e61807a3492b57f10d78e97fed97a0d3b21933.tar.gz
qemu-a0e61807a3492b57f10d78e97fed97a0d3b21933.tar.bz2
qapi: Remove QMP events and commands from user-mode builds
We removed the QMP loop in user-mode builds in commit 1935e0e4e09 ("qapi/meson: Remove QMP from user-mode emulation"), now commands and events code is unreachable. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20210224171642.3242293-1-philmd@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r--qapi/meson.build12
1 files changed, 8 insertions, 4 deletions
diff --git a/qapi/meson.build b/qapi/meson.build
index 0652569..fcb15a7 100644
--- a/qapi/meson.build
+++ b/qapi/meson.build
@@ -102,11 +102,15 @@ foreach module : qapi_all_modules
'qapi-types-@0@.h'.format(module),
'qapi-visit-@0@.c'.format(module),
'qapi-visit-@0@.h'.format(module),
- 'qapi-events-@0@.c'.format(module),
- 'qapi-events-@0@.h'.format(module),
- 'qapi-commands-@0@.c'.format(module),
- 'qapi-commands-@0@.h'.format(module),
]
+ if have_system or have_tools
+ qapi_module_outputs += [
+ 'qapi-events-@0@.c'.format(module),
+ 'qapi-events-@0@.h'.format(module),
+ 'qapi-commands-@0@.c'.format(module),
+ 'qapi-commands-@0@.h'.format(module),
+ ]
+ endif
if module.endswith('-target')
qapi_specific_outputs += qapi_module_outputs
else