summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/wscript b/wscript
index 12577edd16..3624185664 100644
--- a/wscript
+++ b/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)',