From 7183834a29fbaf422a62cfbe166b719393fafa67 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Tue, 19 Feb 2019 13:42:57 +0100 Subject: [PATCH] audio: don't build alsa and sdl by default on linux MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In case no sound hardware is present both alsa and sdl drivers initialize successfully and throw errors later on, i.e. effectively the automatic probing doesn't work. Drop them from the list of default audio drivers for linux because of that. Fixes: 6a48541873 audio: probe audio drivers by default Buglink: https://bugs.launchpad.net/qemu/+bug/1816052 Signed-off-by: Gerd Hoffmann Reviewed-by: Daniel P. Berrangé Tested-by: David Hildenbrand Message-id: 20190219124257.3001-1-kraxel@redhat.com --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 694088a4ec..540bee19ba 100755 --- a/configure +++ b/configure @@ -879,7 +879,7 @@ Haiku) LIBS="-lposix_error_mapper -lnetwork $LIBS" ;; Linux) - audio_drv_list="try-pa try-alsa try-sdl oss" + audio_drv_list="try-pa oss" audio_possible_drivers="oss alsa sdl pa" linux="yes" linux_user="yes" -- 2.30.2