From 487ec9a0d92796a3c725d4ab750b39b2fa5d554c Mon Sep 17 00:00:00 2001 From: Philip Gladstone Date: Sat, 27 Jul 2002 03:00:39 +0000 Subject: [PATCH] Add conditional build of strptime Originally committed as revision 820 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libav/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libav/Makefile b/libav/Makefile index 6f6df89363..eb11986c25 100644 --- a/libav/Makefile +++ b/libav/Makefile @@ -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