summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorEmiliano Parasassi <millallo@gmail.com>2005-06-28 14:59:36 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-06-28 14:59:36 +0000
commitb4cad5371b72027627220e96b79ec0d65b2debe5 (patch)
tree0ae64303226d8366f49efc776e727cfa98a73c5e /configure
parentff547a52d28925ad4ee773a91e2ecb4b61212fdc (diff)
disabling all decoders patch by (Emiliano Parasassi, millallo : tiscali it)
Originally committed as revision 4408 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 9e5329b92a..a479dee9fe 100755
--- a/configure
+++ b/configure
@@ -76,6 +76,7 @@ echo " --disable-strip disable stripping of executables and shared lib
echo " --enable-codec=codec enables codec"
echo " --disable-codec=codec disables codec"
echo " --disable-encoders disables all encoders"
+echo " --disable-decoders disables all decoders"
echo ""
echo "NOTE: The object files are build at the place where configure is launched"
exit 1
@@ -526,6 +527,8 @@ for opt do
;;
--disable-encoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*encoder//g'`"
;;
+ --disable-decoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*decoder//g'`"
+ ;;
esac
done