mirror of https://github.com/mpv-player/mpv
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.
This commit is contained in:
parent
f5eb209ce9
commit
7cc48f26e0
4
wscript
4
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',
|
||||
|
|
Loading…
Reference in New Issue