summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-24 17:09:29 +0200
committerwm4 <wm4@nowhere>2014-05-24 17:09:29 +0200
commit7cc48f26e04701f2b9babc2608bc71b2cacd68c5 (patch)
treed1b396599d18b7867b0a9f1f168cb692127f7e8b
parentf5eb209ce9b23e7a6289374fc5d289ec262db604 (diff)
downloadmpv-7cc48f26e04701f2b9babc2608bc71b2cacd68c5.tar.bz2
mpv-7cc48f26e04701f2b9babc2608bc71b2cacd68c5.tar.xz
build: disable cdda and vcd by default
Let's see if anyone complains. cdda is relatively inoffensive, but the vcd code is the definition of ifdef-hell.
-rw-r--r--wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/wscript b/wscript
index 6a6369f99c..eec5d0ea79 100644
--- a/wscript
+++ b/wscript
@@ -285,7 +285,8 @@ If you really mean to compile without libass support use --disable-libass."
'os-win32': {
'func': check_cc(fragment=load_fragment('vcd_windows.c'))
}
- }
+ },
+ 'default': 'disable',
}, {
'name': '--libbluray',
'desc': 'Bluray support',
@@ -303,6 +304,7 @@ If you really mean to compile without libass support use --disable-libass."
'name': '--cdda',
'desc': 'cdda support (libcdio)',
'func': check_pkg_config('libcdio_paranoia'),
+ 'default': 'disable',
}, {
'name': '--enca',
'desc': 'ENCA support',