Re: [PATCH v2 05/18] ui/vc: console-vc requires PIXMAN

2023-09-19 Thread Paolo Bonzini
On 9/18/23 15:51, marcandre.lur...@redhat.com wrote: return "vc:80Cx24C"; +#else +return "null"; Maybe return NULL and then add some heuristics in vl.c: const char *vc = qemu_display_get_vc(&dpy); if (nographic || (!vc && !is_daemonized() && isatty(STDOUT_F

[PATCH v2 05/18] ui/vc: console-vc requires PIXMAN

2023-09-18 Thread marcandre . lureau
From: Marc-André Lureau Add stubs for the fallback paths. Signed-off-by: Marc-André Lureau --- ui/console-vc-stubs.c | 32 ui/console.c | 4 ui/meson.build| 2 +- 3 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 ui/co