1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-06 08:29:25 +02:00

added ffserver disabling for easier porting

Originally committed as revision 1341 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Fabrice Bellard
2002-12-18 16:34:07 +00:00
parent 17a70fdeef
commit 8154d2e01a
2 changed files with 13 additions and 1 deletions

View File

@@ -19,7 +19,10 @@ EXE=.exe
PROG=ffmpeg$(EXE)
else
EXT=
PROG=ffmpeg ffplay ffserver
PROG=ffmpeg ffplay
ifeq ($(CONFIG_FFSERVER),yes)
PROG+=ffserver
endif
endif
ifeq ($(CONFIG_AUDIO_BEOS),yes)