summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-12-29 14:14:09 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2013-12-29 14:14:09 +0100
commitfc583e74ec538b250ce371f06baf159c6e4b70c3 (patch)
tree10ce51af77a6b88e6b5628b2c17ba16f0a61af21
parentfd4e3af740fc00804e3f1b932462b44f795b1095 (diff)
downloadmpv-fc583e74ec538b250ce371f06baf159c6e4b70c3.tar.bz2
mpv-fc583e74ec538b250ce371f06baf159c6e4b70c3.tar.xz
build: disable SDL by default
old-configure already behaves like this. Adapt wscript to the same default.
-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)',