diff options
author | Marc-André Lureau | 2022-06-22 17:49:18 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-07-08 11:03:36 +0200 |
commit | d2bfbdf316b215ab94858738091cc93d46f27d8c (patch) | |
tree | d3c09ad543afd1938e7f5efe4ca79b44d1698fd5 /audio | |
parent | fuzz: only use generic-fuzz targets on oss-fuzz (diff) | |
download | qemu-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 'audio')
-rw-r--r-- | audio/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/meson.build b/audio/meson.build index 94dab16891..3abee90860 100644 --- a/audio/meson.build +++ b/audio/meson.build @@ -28,7 +28,7 @@ endforeach if dbus_display module_ss = ss.source_set() - module_ss.add(when: [gio, pixman, opengl, 'CONFIG_GIO'], if_true: files('dbusaudio.c')) + module_ss.add(when: gio, if_true: files('dbusaudio.c')) audio_modules += {'dbus': module_ss} endif |