diff options
author | Thomas Huth <thuth@redhat.com> | 2023-06-02 19:18:31 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-06-06 09:42:15 +0200 |
commit | c3527c5e492f2ee37bd0697de3fe8dbb9dbffa24 (patch) | |
tree | 96f03f46bd750480e0c24c7a3a725d2685aa921a /meson.build | |
parent | 9e48afa3ceb695685a0ae756384fa83594bc5f16 (diff) | |
download | qemu-c3527c5e492f2ee37bd0697de3fe8dbb9dbffa24.zip qemu-c3527c5e492f2ee37bd0697de3fe8dbb9dbffa24.tar.gz qemu-c3527c5e492f2ee37bd0697de3fe8dbb9dbffa24.tar.bz2 |
meson.build: Group the network backend entries in a separate summary section
Let's make it easier for the users to spot network-related entries
in the summary of the meson output.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230602171832.533739-3-thuth@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meson.build b/meson.build index cfacd66..b0adf5b 100644 --- a/meson.build +++ b/meson.build @@ -4251,12 +4251,19 @@ summary_info += {'curses support': curses} summary_info += {'brlapi support': brlapi} summary(summary_info, bool_yn: true, section: 'User interface') -# Libraries +# Network backends summary_info = {} if targetos == 'darwin' summary_info += {'vmnet.framework support': vmnet} endif summary_info += {'slirp support': slirp} +summary_info += {'vde support': vde} +summary_info += {'netmap support': have_netmap} +summary_info += {'l2tpv3 support': have_l2tpv3} +summary(summary_info, bool_yn: true, section: 'Network backends') + +# Libraries +summary_info = {} summary_info += {'libtasn1': tasn1} summary_info += {'PAM': pam} summary_info += {'iconv support': iconv} @@ -4278,9 +4285,6 @@ if targetos == 'linux' endif summary_info += {'Pipewire support': pipewire} summary_info += {'JACK support': jack} -summary_info += {'vde support': vde} -summary_info += {'netmap support': have_netmap} -summary_info += {'l2tpv3 support': have_l2tpv3} summary_info += {'Linux AIO support': libaio} summary_info += {'Linux io_uring support': linux_io_uring} summary_info += {'ATTR/XATTR support': libattr} |