[FFmpeg-cvslog] configure: Relax the implication of --enable for components

Luca Barbato git at videolan.org
Wed Feb 24 18:22:16 CET 2016


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Mon Feb 15 01:49:18 2016 +0100| [2edc718723b60530aead26c20cbc891102f7d529] | committer: Luca Barbato

configure: Relax the implication of --enable for components

Do not error out if some subcomponents cannot be enabled.

Reported-By: RT|AO

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2edc718723b60530aead26c20cbc891102f7d529
---

 configure |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/configure b/configure
index 7c0845b..270a6ec 100755
--- a/configure
+++ b/configure
@@ -2656,10 +2656,11 @@ for opt do
         ;;
         --enable-?*|--disable-?*)
             eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
-            test $action = enable && action="request"
             if is_in $option $COMPONENT_LIST; then
+                test $action = enable && action="enable_deep_force"
                 eval $action \$$(toupper ${option%s})_LIST
             elif is_in $option $CMDLINE_SELECT; then
+                test $action = enable && action="request"
                 $action $option
             else
                 die_unknown $opt



More information about the ffmpeg-cvslog mailing list