Skip to content

Commit c3527c5

Browse files
huthbonzini
authored andcommitted
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 <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Reviewed-by: Richard Henderson <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
1 parent 9e48afa commit c3527c5

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

meson.build

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4251,12 +4251,19 @@ summary_info += {'curses support': curses}
42514251
summary_info += {'brlapi support': brlapi}
42524252
summary(summary_info, bool_yn: true, section: 'User interface')
42534253

4254-
# Libraries
4254+
# Network backends
42554255
summary_info = {}
42564256
if targetos == 'darwin'
42574257
summary_info += {'vmnet.framework support': vmnet}
42584258
endif
42594259
summary_info += {'slirp support': slirp}
4260+
summary_info += {'vde support': vde}
4261+
summary_info += {'netmap support': have_netmap}
4262+
summary_info += {'l2tpv3 support': have_l2tpv3}
4263+
summary(summary_info, bool_yn: true, section: 'Network backends')
4264+
4265+
# Libraries
4266+
summary_info = {}
42604267
summary_info += {'libtasn1': tasn1}
42614268
summary_info += {'PAM': pam}
42624269
summary_info += {'iconv support': iconv}
@@ -4278,9 +4285,6 @@ if targetos == 'linux'
42784285
endif
42794286
summary_info += {'Pipewire support': pipewire}
42804287
summary_info += {'JACK support': jack}
4281-
summary_info += {'vde support': vde}
4282-
summary_info += {'netmap support': have_netmap}
4283-
summary_info += {'l2tpv3 support': have_l2tpv3}
42844288
summary_info += {'Linux AIO support': libaio}
42854289
summary_info += {'Linux io_uring support': linux_io_uring}
42864290
summary_info += {'ATTR/XATTR support': libattr}

0 commit comments

Comments
 (0)