From 7cc48f26e04701f2b9babc2608bc71b2cacd68c5 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 24 May 2014 17:09:29 +0200 Subject: 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. --- wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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', -- cgit v1.2.3