[Ffmpeg-cvslog] r8607 - trunk/configure

diego subversion
Tue Apr 3 15:10:38 CEST 2007


Author: diego
Date: Tue Apr  3 15:10:37 2007
New Revision: 8607

Modified:
   trunk/configure

Log:
cosmetics: Better variable name, the ENABLE_* lists contain more than codecs.


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Tue Apr  3 15:10:37 2007
@@ -2017,11 +2017,11 @@ else
 fi
 
 
-for codec in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do
-    ucname="`toupper $codec`"
+for part in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do
+    ucname="`toupper $part`"
     config_name="CONFIG_$ucname"
     enabled_name="ENABLE_$ucname"
-    if enabled $codec; then
+    if enabled $part; then
         echo "#define $config_name 1" >> $TMPH
         echo "#define $enabled_name 1" >> $TMPH
         echo "$config_name=yes" >> config.mak




More information about the ffmpeg-cvslog mailing list