diff options
author | John Stebbins <[email protected]> | 2016-02-10 12:25:33 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-02-10 12:25:33 -0700 |
commit | 6da861c9dc023e5b7cad648d596f571ee1214bbf (patch) | |
tree | 20e98d46d027e96c47321906d66b81f0fe040be1 /make | |
parent | 5f41c0bd65363c23d13cf20de00288513a0e61c9 (diff) |
build: do not enable fdk-aac by default
There is a license incompatibility with gpl :(
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |