From 6da861c9dc023e5b7cad648d596f571ee1214bbf Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Wed, 10 Feb 2016 12:25:33 -0700 Subject: [PATCH] build: do not enable fdk-aac by default There is a license incompatibility with gpl :( --- make/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/configure.py b/make/configure.py index 85988260e..c39309737 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1253,7 +1253,7 @@ def createCLI(): grp.add_option( '--disable-x265', dest="enable_x265", action='store_false' ) h = IfHost( 'enable use of fdk-aac encoder', '*-*-*', none=optparse.SUPPRESS_HELP ).value - grp.add_option( '--enable-fdk-aac', dest="enable_fdk_aac", default=not host.match( '*-*-darwin*' ), action='store_true', help=h ) + grp.add_option( '--enable-fdk-aac', dest="enable_fdk_aac", default=False, action='store_true', help=h ) grp.add_option( '--disable-fdk-aac', dest="enable_fdk_aac", action='store_false' ) h = IfHost( 'enable use of libav aac encoder', '*-*-*', none=optparse.SUPPRESS_HELP ).value -- 2.40.0