]> granicus.if.org Git - handbrake/commitdiff
Revert "make: Print unsupported status of FFmpeg AAC on Darwin/macOS in configure...
authorBradley Sepos <bradley@bradleysepos.com>
Fri, 25 Oct 2019 19:16:23 +0000 (15:16 -0400)
committerBradley Sepos <bradley@bradleysepos.com>
Fri, 25 Oct 2019 19:16:23 +0000 (15:16 -0400)
Actually is supported; I was passing the wrong parameter to configure.

This reverts commit 19088348e2f397defd92ee554b283b8b681d2517.

make/configure.py

index 8dbaa634fdc47aa4949713691bbaee5126bbe3d7..86dd6c1193114e098116cb9997b7a0f0b9eba2be 100644 (file)
@@ -2120,7 +2120,7 @@ int main()
     stdout.write( ' (%s)\n' % note_unsupported ) if not host_tuple.system == 'darwin' else stdout.write( '\n' )
     stdout.write( 'Enable FDK-AAC:     %s\n' % options.enable_fdk_aac )
     stdout.write( 'Enable FFmpeg AAC:  %s' % options.enable_ffmpeg_aac )
-    stdout.write( ' (%s)\n' % note_unsupported ) if host_tuple.system == 'darwin' else stdout.write( '  (%s)\n' % note_required )
+    stdout.write( '  (%s)\n' % note_required ) if host_tuple.system != 'darwin' else stdout.write( '\n' )
     stdout.write( 'Enable NVENC:       %s' % options.enable_nvenc )
     stdout.write( ' (%s)\n' % note_unsupported ) if not (host_tuple.system == 'linux' or host_tuple.system == 'mingw') else stdout.write( '\n' )
     stdout.write( 'Enable QSV:         %s' % options.enable_qsv )