print enabled things in columns

Originally committed as revision 12251 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2008-02-26 21:50:06 +00:00
parent 3cde40aaa4
commit f65c9da140

11
configure vendored
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 &&