diff options
| author | Thomas Huth <thuth@redhat.com> | 2025-03-25 06:51:25 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2025-04-30 20:44:20 +0200 |
| commit | c6d82df70e0ad3477ea97e9dc99b97c2fbfa0c1a (patch) | |
| tree | dca8ccd34f92b554ada8835944e3bfa027ca904b | |
| parent | bcfee4938f8d4e8bf5f49981d3c8a78cf267cb4e (diff) | |
| download | focaccia-qemu-c6d82df70e0ad3477ea97e9dc99b97c2fbfa0c1a.tar.gz focaccia-qemu-c6d82df70e0ad3477ea97e9dc99b97c2fbfa0c1a.zip | |
meson.build: Put the D-Bus summary into the UI section
We've got a dedicated section for UI options nowadays, so the D-Bus display should get reported here, too. Message-ID: <20250325055125.253669-1-thuth@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
| -rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index ccd6c71577..6c61e1dcae 100644 --- a/meson.build +++ b/meson.build @@ -4619,7 +4619,6 @@ summary_info += {'Trace backends': ','.join(get_option('trace_backends'))} if 'simple' in get_option('trace_backends') summary_info += {'Trace output file': get_option('trace_file') + '-<pid>'} endif -summary_info += {'D-Bus display': dbus_display} summary_info += {'QOM debugging': get_option('qom_cast_debug')} summary_info += {'Relocatable install': get_option('relocatable')} summary_info += {'vhost-kernel support': have_vhost_kernel} @@ -4802,6 +4801,7 @@ summary_info = {} if host_os == 'darwin' summary_info += {'Cocoa support': cocoa} endif +summary_info += {'D-Bus display': dbus_display} summary_info += {'SDL support': sdl} summary_info += {'SDL image support': sdl_image} summary_info += {'GTK support': gtk} |