diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-08-15 22:33:03 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-08-15 22:33:03 +0000 |
commit | a74127c071fd46cdd40b9beca6721a9ca6338142 (patch) | |
tree | ce84b21312cf30edc838cd5fbfba62ac21912b9b /libav/Makefile | |
parent | d0a0b2483e7b62e0f72c3b60f0a5f24175d665ee (diff) | |
download | ffmpeg-a74127c071fd46cdd40b9beca6721a9ca6338142.tar.gz |
win32 fixes
Originally committed as revision 110 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/Makefile')
-rw-r--r-- | libav/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libav/Makefile b/libav/Makefile index 80dfd389c9..17e4469114 100644 --- a/libav/Makefile +++ b/libav/Makefile @@ -4,12 +4,16 @@ CFLAGS= $(OPTFLAGS) -Wall -g -I../libavcodec -DHAVE_AV_CONFIG_H OBJS= rm.o mpeg.o asf.o avienc.o jpeg.o swf.o wav.o raw.o \ avidec.o ffm.o \ avio.o aviobuf.o utils.o \ - udp.o http.o file.o img.o + file.o img.o ifeq ($(CONFIG_GRAB),yes) OBJS+= grab.o audio.o endif +ifneq ($(CONFIG_WIN32),yes) +OBJS+= udp.o http.o +endif + LIB= libav.a all: $(LIB) |