qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] audio: dbus requires pixman
@ 2023-06-30 21:41 marcandre.lureau
  2023-07-01  6:28 ` Richard Henderson
  0 siblings, 1 reply; 4+ messages in thread
From: marcandre.lureau @ 2023-06-30 21:41 UTC (permalink / raw)
  To: qemu-devel; +Cc: richard.henderson, Marc-André Lureau, Gerd Hoffmann

From: Marc-André Lureau <marcandre.lureau@redhat.com>

Commit commit 6cc5a615 ("ui/dbus: win32 support") has broken audio/dbus
compilation when pixman is not included.

Fixes: https://gitlab.com/qemu-project/qemu/-/issues/1739

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 audio/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/audio/meson.build b/audio/meson.build
index e7e95cf751..df4d968c0f 100644
--- a/audio/meson.build
+++ b/audio/meson.build
@@ -31,7 +31,7 @@ endforeach
 
 if dbus_display
     module_ss = ss.source_set()
-    module_ss.add(when: gio, if_true: files('dbusaudio.c'))
+    module_ss.add(when: [gio, pixman], if_true: files('dbusaudio.c'))
     audio_modules += {'dbus': module_ss}
 endif
 
-- 
2.41.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-07-01 10:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-30 21:41 [PATCH] audio: dbus requires pixman marcandre.lureau
2023-07-01  6:28 ` Richard Henderson
2023-07-01  8:04   ` Philippe Mathieu-Daudé
2023-07-01 10:13     ` Richard Henderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).