Commit b69dc6b7 authored by Ramiro's avatar Ramiro

List enabled code in configure output

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10921 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1b86e1b3
......@@ -1826,6 +1826,18 @@ enabled gpl &&
echo "License: GPL" ||
echo "License: LGPL"
for type in decoder encoder parser demuxer muxer protocol bsf; do
echo "Enabled ${type}s:"
ucname="\$`toupper $type`_LIST"
list="`eval echo $ucname`"
partlist=""
for part in $list; do
enabled $part && partlist="$partlist $part"
done
partlist=`echo $partlist | sed s/_$type//g | tr ' ' '\n' | sort`
echo $partlist
done
echo "Creating config.mak and config.h..."
echo "# Automatically generated by configure - do not modify!" > config.mak
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment