Skip to content

Commit

Permalink
audio: dbus requires pixman
Browse files Browse the repository at this point in the history
Commit commit 6cc5a61 ("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>
Message-Id: <20230630214156.2181558-1-marcandre.lureau@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
elmarco authored and rth7680 committed Jul 1, 2023
1 parent d39a84b commit a95a464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audio/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit a95a464

Please sign in to comment.