diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-09-08 21:20:55 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-09-08 21:20:55 +0000 |
commit | f71869a4db1d20dd93cb6a37ba8ef1249812c864 (patch) | |
tree | 5a3cf06e8089682b559e461f8de8ab20f488b0fc /libavformat/Makefile | |
parent | 742d87d633d20f2b1dcd7f0d2427f15cb6ac40c6 (diff) | |
download | ffmpeg-f71869a4db1d20dd93cb6a37ba8ef1249812c864.tar.gz |
simpler strptime - added os_support.[ch] - moved localtime_r to os_support.c
Originally committed as revision 2228 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 021f0bf013..ae35034854 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -8,7 +8,7 @@ VPATH=$(SRC_PATH)/libavformat CFLAGS= $(OPTFLAGS) -Wall -g -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -OBJS= utils.o cutils.o allformats.o +OBJS= utils.o cutils.o os_support.o allformats.o PPOBJS= # mux and demuxes @@ -31,14 +31,6 @@ OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o OBJS+= avio.o aviobuf.o file.o OBJS+= framehook.o -ifeq ($(BUILD_STRPTIME),yes) -OBJS+= strptime.o -endif - -ifeq ($(BUILD_LOCALTIME_R),yes) -OBJS+= localtime_r.o -endif - ifeq ($(CONFIG_VIDEO4LINUX),yes) OBJS+= grab.o endif |