diff mbox series

[3/4] audio: use try-sdl and try-pa for openbsd

Message ID 20190123080005.31078-4-kraxel@redhat.com
State New
Headers show
Series audio: rework driver probing. | expand

Commit Message

Gerd Hoffmann Jan. 23, 2019, 8 a.m. UTC
Fixes the openbsd build failure with SDL disabled.
Also enable pulseaudio support.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/configure b/configure
index 6fef094f39..bbadd83fea 100755
--- a/configure
+++ b/configure
@@ -825,8 +825,8 @@  NetBSD)
 OpenBSD)
   bsd="yes"
   make="${MAKE-gmake}"
-  audio_drv_list="sdl"
-  audio_possible_drivers="sdl"
+  audio_drv_list="try-sdl try-pa"
+  audio_possible_drivers="sdl pa"
   HOST_VARIANT_DIR="openbsd"
   supported_os="yes"
 ;;