summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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