summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorMarc-André Lureau2022-06-22 17:49:18 +0200
committerPaolo Bonzini2022-07-08 11:03:36 +0200
commitd2bfbdf316b215ab94858738091cc93d46f27d8c (patch)
treed3c09ad543afd1938e7f5efe4ca79b44d1698fd5 /meson.build
parentfuzz: only use generic-fuzz targets on oss-fuzz (diff)
downloadqemu-d2bfbdf316b215ab94858738091cc93d46f27d8c.tar.gz
qemu-d2bfbdf316b215ab94858738091cc93d46f27d8c.tar.xz
qemu-d2bfbdf316b215ab94858738091cc93d46f27d8c.zip
audio/dbus: fix building
Commit c9c847481 broken dbus audio module compilation with bad 'CONFIG_GIO' usage. Furthermore, it implied extra dependency on audio module which aren't necessary. The problem was that 'dbus_display' is not correctly automatically set on MacOS, because opengl dependency wasn't taken into account. Fixes: c9c847481 ("audio/dbus: Fix building with modules on macOS") Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220622154918.560870-1-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 013c694a49..ad92d288a6 100644
--- a/meson.build
+++ b/meson.build
@@ -1672,6 +1672,8 @@ dbus_display = get_option('dbus_display') \
error_message: '-display dbus requires --enable-modules') \
.require(gdbus_codegen.found(),
error_message: '-display dbus requires gdbus-codegen') \
+ .require(opengl.found(),
+ error_message: '-display dbus requires epoxy/egl') \
.allowed()
have_virtfs = get_option('virtfs') \