build: disable SDL by default

old-configure already behaves like this. Adapt wscript to the same default.
This commit is contained in:
Stefano Pigozzi 2013-12-29 14:14:09 +01:00
parent fd4e3af740
commit fc583e74ec
1 changed files with 4 additions and 2 deletions

View File

@ -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)',