Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure b/configure
index 22be3a3b2e..462d2530e9 100755
--- a/configure
+++ b/configure
@@ -98,6 +98,7 @@ show_help(){
echo " --disable-mpegaudio-hp faster (but less accurate)"
echo " MPEG audio decoding [default=no]"
echo " --disable-protocols disable I/O protocols support [default=no]"
+ echo " --disable-ffmpeg disable ffmpeg build"
echo " --disable-ffserver disable ffserver build"
echo " --disable-ffplay disable ffplay build"
echo " --enable-small optimize for size instead of speed"
@@ -455,6 +456,7 @@ VHOOKSHFLAGS='$(SHFLAGS)'
netserver="no"
need_inet_aton="no"
protocols="yes"
+ffmpeg="yes"
ffserver="yes"
ffplay="yes"
LIBOBJFLAGS=""
@@ -810,6 +812,8 @@ for opt do
;;
--disable-protocols) protocols="no"; network="no"; ffserver="no"
;;
+ --disable-ffmpeg) ffmpeg="no"
+ ;;
--disable-ffserver) ffserver="no"
;;
--disable-ffplay) ffplay="no"
@@ -2104,6 +2108,11 @@ if test "$protocols" = "yes" ; then
echo "CONFIG_PROTOCOLS=yes" >> config.mak
fi
+if test "$ffmpeg" = "yes" ; then
+ echo "#define CONFIG_FFMPEG 1" >> $TMPH
+ echo "CONFIG_FFMPEG=yes" >> config.mak
+fi
+
if test "$ffserver" = "yes" ; then
echo "#define CONFIG_FFSERVER 1" >> $TMPH
echo "CONFIG_FFSERVER=yes" >> config.mak