diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2007-11-04 02:20:12 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2007-11-04 02:20:12 +0000 |
commit | 8138b9db26cff1d57b494213c0add7d7b9c0fce1 (patch) | |
tree | e29bc9c5174a9be200f36d29d915cadb088988e1 | |
parent | bf0c4afab21199dc361aa34109b605eb79b1f868 (diff) | |
download | ffmpeg-8138b9db26cff1d57b494213c0add7d7b9c0fce1.tar.gz |
List enabled code in configure output
Originally committed as revision 10921 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 |