summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2017-06-21 00:49:16 -0400
committerBradley Sepos <[email protected]>2017-06-21 00:49:16 -0400
commit25baa3678c8918d107975e9496bd18d4d9aeef7b (patch)
tree3017fab29d81303fcead86ad35f626a419af7fbc
parent2a99ac1e30015ad1ab9a4b15c752547d03aebffc (diff)
build: Always enable Libav AAC when building with mingw-w64.
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index b6e0be58c..50a266b16 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -1849,7 +1849,7 @@ int main()
doc.add( 'FEATURE.gtk.mingw', int( options.enable_gtk_mingw ))
doc.add( 'FEATURE.gst', int( not options.disable_gst ))
doc.add( 'FEATURE.fdk_aac', int( options.enable_fdk_aac ))
- doc.add( 'FEATURE.libav_aac', int( options.enable_libav_aac ))
+ doc.add( 'FEATURE.libav_aac', int( options.enable_libav_aac or build.system == 'mingw' ))
doc.add( 'FEATURE.qsv', int( options.enable_qsv ))
doc.add( 'FEATURE.xcode', int( not (Tools.xcodebuild.fail or options.disable_xcode or options.cross) ))
doc.add( 'FEATURE.x265', int( options.enable_x265 ))