Commit d14109fe authored by diego's avatar diego

Add option to disable ffmpeg build.

Patch taken from the Debian package by Sam Hocevar.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6871 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 688bd733
......@@ -11,11 +11,13 @@ CFLAGS=$(OPTFLAGS) -I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE
LDFLAGS+= -g
ifeq ($(CONFIG_FFMPEG),yes)
MANPAGES=doc/ffmpeg.1
PROGS_G+=ffmpeg_g$(EXESUF)
PROGS+=ffmpeg$(EXESUF)
PROGTEST=output_example$(EXESUF)
QTFASTSTART=qt-faststart$(EXESUF)
endif
ifeq ($(CONFIG_FFSERVER),yes)
MANPAGES+=doc/ffserver.1
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment