diff options
author | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-07-27 03:00:39 +0000 |
---|---|---|
committer | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-07-27 03:00:39 +0000 |
commit | 487ec9a0d92796a3c725d4ab750b39b2fa5d554c (patch) | |
tree | 80f5fcc7d632283dc190094b6e5037cf77971c9b /libav | |
parent | 68892110e08e120c0b4882e1644b2c7833607a42 (diff) | |
download | ffmpeg-487ec9a0d92796a3c725d4ab750b39b2fa5d554c.tar.gz |
Add conditional build of strptime
Originally committed as revision 820 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav')
-rw-r--r-- | libav/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
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 |