Commit 0ff6dafe authored by bellard's avatar bellard

added ffserver disabling for easier porting


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1341 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 022a1c9b
...@@ -19,7 +19,10 @@ EXE=.exe ...@@ -19,7 +19,10 @@ EXE=.exe
PROG=ffmpeg$(EXE) PROG=ffmpeg$(EXE)
else else
EXT= EXT=
PROG=ffmpeg ffplay ffserver PROG=ffmpeg ffplay
ifeq ($(CONFIG_FFSERVER),yes)
PROG+=ffserver
endif
endif endif
ifeq ($(CONFIG_AUDIO_BEOS),yes) ifeq ($(CONFIG_AUDIO_BEOS),yes)
......
...@@ -71,6 +71,7 @@ mpegaudio_hp="yes" ...@@ -71,6 +71,7 @@ mpegaudio_hp="yes"
SHFLAGS=-shared SHFLAGS=-shared
netserver="no" netserver="no"
need_inet_aton="no" need_inet_aton="no"
ffserver="yes"
LDFLAGS=-Wl,--warn-common LDFLAGS=-Wl,--warn-common
FFSLDFLAGS=-Wl,-E FFSLDFLAGS=-Wl,-E
...@@ -275,6 +276,8 @@ for opt do ...@@ -275,6 +276,8 @@ for opt do
;; ;;
--disable-mpegaudio-hp) mpegaudio_hp="no" --disable-mpegaudio-hp) mpegaudio_hp="no"
;; ;;
--disable-ffserver) ffserver="no"
;;
esac esac
done done
...@@ -487,6 +490,7 @@ echo " --disable-vhook disable video hooking support" ...@@ -487,6 +490,7 @@ echo " --disable-vhook disable video hooking support"
echo " --enable-gprof enable profiling with gprof [$gprof]" echo " --enable-gprof enable profiling with gprof [$gprof]"
echo " --disable-mpegaudio-hp faster (but less accurate)" echo " --disable-mpegaudio-hp faster (but less accurate)"
echo " mpegaudio decoding [default=no]" echo " mpegaudio decoding [default=no]"
echo " --disable-ffserver disable ffserver build"
echo "" echo ""
echo "NOTE: The object files are build at the place where configure is launched" echo "NOTE: The object files are build at the place where configure is launched"
exit 1 exit 1
...@@ -704,6 +708,11 @@ if test "$simpleidct" = "yes" ; then ...@@ -704,6 +708,11 @@ if test "$simpleidct" = "yes" ; then
echo "#define SIMPLE_IDCT 1" >> $TMPH echo "#define SIMPLE_IDCT 1" >> $TMPH
fi fi
if test "$ffserver" = "yes" ; then
echo "#define CONFIG_FFSERVER 1" >> $TMPH
echo "CONFIG_FFSERVER=yes" >> config.mak
fi
echo "#define restrict $_restrict" >> $TMPH echo "#define restrict $_restrict" >> $TMPH
# build tree in object directory if source path is different from current one # build tree in object directory if source path is different from current one
......
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