1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

Merge commit 'd1a91ebe4990001e0800ee9ac54ed2207e4f56ff'

* commit 'd1a91ebe4990001e0800ee9ac54ed2207e4f56ff':
  configure: Print list of enabled programs

This commit is mostly a noop, see 832b4a4a43

Merged-by: Clément Bœsch <cboesch@gopro.com>
This commit is contained in:
Clément Bœsch 2017-03-31 11:24:11 +02:00
commit d62606480f

8
configure vendored
View File

@ -6606,10 +6606,6 @@ test -n "$random_seed" &&
echo "random seed ${random_seed}" echo "random seed ${random_seed}"
echo echo
echo "Enabled programs:"
print_enabled '' $PROGRAM_LIST | print_in_columns
echo
echo "External libraries:" echo "External libraries:"
print_enabled '' $EXTERNAL_LIBRARY_LIST | print_in_columns print_enabled '' $EXTERNAL_LIBRARY_LIST | print_in_columns
echo echo
@ -6622,6 +6618,10 @@ echo "Libraries:"
print_enabled '' $LIBRARY_LIST | print_in_columns print_enabled '' $LIBRARY_LIST | print_in_columns
echo echo
echo "Programs:"
print_enabled '' $PROGRAM_LIST | print_in_columns
echo
for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
echo "Enabled ${type}s:" echo "Enabled ${type}s:"
eval list=\$$(toupper $type)_LIST eval list=\$$(toupper $type)_LIST