mirror of https://github.com/mpv-player/mpv
build: disable SDL by default
old-configure already behaves like this. Adapt wscript to the same default.
This commit is contained in:
parent
fd4e3af740
commit
fc583e74ec
6
wscript
6
wscript
|
@ -377,12 +377,14 @@ audio_output_features = [
|
|||
{
|
||||
'name': '--sdl2',
|
||||
'desc': 'SDL2',
|
||||
'func': check_pkg_config('sdl2')
|
||||
'func': check_pkg_config('sdl2'),
|
||||
'default': 'disable'
|
||||
}, {
|
||||
'name': '--sdl',
|
||||
'desc': 'SDL (1.x)',
|
||||
'deps_neg': [ 'sdl2' ],
|
||||
'func': check_pkg_config('sdl')
|
||||
'func': check_pkg_config('sdl'),
|
||||
'default': 'disable'
|
||||
}, {
|
||||
'name': 'oss-audio-4front',
|
||||
'desc': 'OSS (implementation from opensound.com)',
|
||||
|
|
Loading…
Reference in New Issue