[FFmpeg-cvslog] r10921 - trunk/configure
Ramiro
subversion
Sun Nov 4 03:20:12 CET 2007
Author: Ramiro
Date: Sun Nov 4 03:20:12 2007
New Revision: 10921
Log:
List enabled code in configure output
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Sun Nov 4 03:20:12 2007
@@ -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
More information about the ffmpeg-cvslog
mailing list