> sdl) > if test "$sdl" = "no"; then > - error_exit "sdl not found or disabled, can not use sdl audio driver" > + echo "WARN: sdl not found or disabled, can not use sdl audio driver" > + audio_drv_list=$(echo "$audio_drv_list" | sed -e 's/sdl *//g')
Busy tackling that in a separate patch series (audio: rework driver probing) > fi > ;; > > @@ -3408,6 +3409,9 @@ for drv in $audio_drv_list; do > ;; > esac > done > +if test -z "$audio_drv_list"; then > + audio_drv_list="none" > +fi Not needed, "none" is used as fallback even without this. The other tree patches look fine to me, I'll go queue them up. cheers, Gerd