Skip to content

Commit

Permalink
build: disable SDL by default
Browse files Browse the repository at this point in the history
old-configure already behaves like this. Adapt wscript to the same default.
  • Loading branch information
pigoz committed Dec 29, 2013
1 parent fd4e3af commit fc583e7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -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)',
Expand Down

0 comments on commit fc583e7

Please sign in to comment.