mirror of
https://github.com/mpv-player/mpv
synced 2025-03-25 04:38:01 +00:00
configure: make --enable-openal use auto detection
OpenAL is disabled by default, because it supposedly inteferes with some other configure tests and makes them fail silently. Previously, --enable-openal followed configure's utterly braindead semantics and disabled auto detection. However, since OpenAL was disabled by default, there was no easy way to enable OpenAL at all, even if it was explicitly requested. Solve this by making --enable-openal use auto detection.
This commit is contained in:
parent
af14474879
commit
c57883b71b
2
configure
vendored
2
configure
vendored
@ -662,7 +662,7 @@ for ac_option do
|
||||
--disable-portaudio) _portaudio=no ;;
|
||||
--enable-jack) _jack=yes ;;
|
||||
--disable-jack) _jack=no ;;
|
||||
--enable-openal) _openal=yes ;;
|
||||
--enable-openal) _openal=auto ;;
|
||||
--disable-openal) _openal=no ;;
|
||||
--enable-libcdio) _libcdio=yes ;;
|
||||
--disable-libcdio) _libcdio=no ;;
|
||||
|
Loading…
Reference in New Issue
Block a user