Browse Source

print enabled things in columns

Originally committed as revision 12251 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 17 years ago
parent
commit
f65c9da140
1 changed files with 4 additions and 7 deletions
  1. +4
    -7
      configure

+ 4
- 7
configure View File

@@ -1951,14 +1951,11 @@ echo "zlib enabled ${zlib-no}"

for type in decoder encoder parser demuxer muxer protocol filter bsf indev outdev; do
echo "Enabled ${type}s:"
ucname="\$`toupper $type`_LIST"
list="`eval echo $ucname`"
partlist=""
eval list=\$$(toupper $type)_LIST
for part in $list; do
enabled $part && partlist="$partlist $part"
done
partlist=`echo $partlist | sed s/_$type//g | tr ' ' '\n' | sort`
echo $partlist
enabled $part && echo ${part%_*}
done | sort | pr -3 -t
echo
done

enabled nonfree &&


Loading…
Cancel
Save