Signed-off-by: Philippe Mathieu-Daudé <phi...@redhat.com> --- configure | 6 ++++++ meson.build | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/configure b/configure index 9f016b06b54..a15bdfb6ef3 100755 --- a/configure +++ b/configure @@ -2324,6 +2324,12 @@ if test -z "$want_tools"; then fi fi +########################################## +# Disable features only meaningful for system-mode emulation +if test "$softmmu" = "no"; then + audio_drv_list="" +fi + ########################################## # Some versions of Mac OS X incorrectly define SIZE_MAX cat > $TMPC << EOF diff --git a/meson.build b/meson.build index 575e34d88ac..e6c6d1518ef 100644 --- a/meson.build +++ b/meson.build @@ -2425,7 +2425,9 @@ # TODO: add back version summary_info += {'virgl support': config_host.has_key('CONFIG_VIRGL')} summary_info += {'curl support': curl.found()} -summary_info += {'Audio drivers': config_host['CONFIG_AUDIO_DRIVERS']} +if have_system + summary_info += {'Audio drivers': config_host['CONFIG_AUDIO_DRIVERS']} +endif summary_info += {'Block whitelist (rw)': config_host['CONFIG_BDRV_RW_WHITELIST']} summary_info += {'Block whitelist (ro)': config_host['CONFIG_BDRV_RO_WHITELIST']} summary_info += {'VirtFS support': have_virtfs} -- 2.26.2