1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

Add conditional build of strptime

Originally committed as revision 820 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Philip Gladstone 2002-07-27 03:00:39 +00:00
parent 68892110e0
commit 487ec9a0d9

View File

@ -12,10 +12,15 @@ OBJS= utils.o cutils.o allformats.o
# mux and demuxes
OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o asf.o \
avienc.o avidec.o wav.o swf.o au.o gif.o mov.o jpeg.o
avienc.o avidec.o wav.o swf.o au.o gif.o mov.o jpeg.o
# framehook.o
# file I/O
OBJS+= avio.o aviobuf.o file.o
ifeq ($(BUILD_STRPTIME),yes)
OBJS+= strptime.o
endif
ifeq ($(CONFIG_VIDEO4LINUX),yes)
OBJS+= grab.o
endif