diff options
| author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-09-05 16:51:53 +0400 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-11-07 14:04:25 +0400 |
| commit | 699f15fd0c062c5f337584c585223bf7c3a9cd8e (patch) | |
| tree | 8d9a4c370d42532f61142a5ab144fc3b5323ae33 /hw/display/meson.build | |
| parent | 376a0531d4f5ebe3e895986e0b2e1c15a9e4721c (diff) | |
| download | focaccia-qemu-699f15fd0c062c5f337584c585223bf7c3a9cd8e.tar.gz focaccia-qemu-699f15fd0c062c5f337584c585223bf7c3a9cd8e.zip | |
hw/display/ati: allow compiling without PIXMAN
Change the "x-pixman" property default value and use the fallback path when PIXMAN support is disabled. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: BALATON Zoltan <balaton@eik.bme.hu>
Diffstat (limited to 'hw/display/meson.build')
| -rw-r--r-- | hw/display/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/meson.build b/hw/display/meson.build index 9c06aaee20..344dfe3d8c 100644 --- a/hw/display/meson.build +++ b/hw/display/meson.build @@ -62,7 +62,7 @@ system_ss.add(when: 'CONFIG_XLNX_DISPLAYPORT', if_true: files('xlnx_dp.c')) system_ss.add(when: 'CONFIG_ARTIST', if_true: files('artist.c')) -system_ss.add(when: [pixman, 'CONFIG_ATI_VGA'], if_true: files('ati.c', 'ati_2d.c', 'ati_dbg.c')) +system_ss.add(when: 'CONFIG_ATI_VGA', if_true: [files('ati.c', 'ati_2d.c', 'ati_dbg.c'), pixman]) if config_all_devices.has_key('CONFIG_VIRTIO_GPU') |