diff options
| author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-08-30 13:38:29 +0400 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-11-07 14:04:25 +0400 |
| commit | f38aa2c7c0c85d8f978a3c23ab0a32578fc73134 (patch) | |
| tree | 60521141ac04fd3ca62323a183e617a9c207be87 /ui/ui-qmp-cmds.c | |
| parent | 600179c39efb30cf072e18c7604ccf52360684c6 (diff) | |
| download | focaccia-qemu-f38aa2c7c0c85d8f978a3c23ab0a32578fc73134.tar.gz focaccia-qemu-f38aa2c7c0c85d8f978a3c23ab0a32578fc73134.zip | |
qmp/hmp: disable screendump if PIXMAN is missing
The command requires color conversion and line-by-line feeding. We could have a simple fallback for simple formats though. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'ui/ui-qmp-cmds.c')
| -rw-r--r-- | ui/ui-qmp-cmds.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/ui-qmp-cmds.c b/ui/ui-qmp-cmds.c index debc07d678..d772e1cb7f 100644 --- a/ui/ui-qmp-cmds.c +++ b/ui/ui-qmp-cmds.c @@ -212,6 +212,7 @@ void qmp_client_migrate_info(const char *protocol, const char *hostname, error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "'spice'"); } +#ifdef CONFIG_PIXMAN #ifdef CONFIG_PNG /** * png_save: Take a screenshot as PNG @@ -391,3 +392,4 @@ qmp_screendump(const char *filename, const char *device, } } } +#endif /* CONFIG_PIXMAN */ |