OSDN Git Service

configure: allow comma-separated list in --enable/disable-thing=name
authorMåns Rullgård <mans@mansr.com>
Thu, 6 Aug 2009 15:45:25 +0000 (15:45 +0000)
committerMåns Rullgård <mans@mansr.com>
Thu, 6 Aug 2009 15:45:25 +0000 (15:45 +0000)
The argument to these options is now a comma-separated list of shell
patterns, e.g. --disable-decoder='indeo*,rv*'

Originally committed as revision 19604 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 035d938..5674b4e 100755 (executable)
--- a/configure
+++ b/configure
@@ -1390,10 +1390,11 @@ for opt do
     --enable-debug=*) debuglevel="$optval"
     ;;
     --enable-*=*|--disable-*=*)
-    eval $(echo "$opt" | sed 's/=/-/;s/--/action=/;s/-/ thing=/;s/-/ name=/')
+    eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
     is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
     eval list=\$$(toupper $thing)_LIST
-    $action $(filter "${optval}_${thing}" $list)
+    name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
+    $action $(filter "$name" $list)
     ;;
     --enable-?*|--disable-?*)
     eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')