Mercurial > libavformat.hg
diff Makefile @ 905:dbc0145bbf11 libavformat
Add --disable-protocols option to configure to disable I/O protocol from
libavformat. Also fix build with --disable-muxers and --disable-ffserver.
patch by Gildas Bazin < gbazin **@** altern **.** org >
author | diego |
---|---|
date | Sat, 21 Jan 2006 18:36:32 +0000 |
parents | 04509c9a1b7a |
children | f1104ac8de95 |
line wrap: on
line diff
--- a/Makefile Fri Jan 20 23:48:16 2006 +0000 +++ b/Makefile Sat Jan 21 18:36:32 2006 +0000 @@ -11,13 +11,20 @@ OBJS= utils.o cutils.o os_support.o allformats.o PPOBJS= -# mux and demuxes +# demuxers OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \ avienc.o avidec.o wav.o mmf.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \ - yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \ + yuv4mpeg.o 4xm.o flvdec.o psxstr.o idroq.o ipmovie.o \ nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \ - sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o asf-enc.o \ + sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o \ ogg2.o oggparsevorbis.o oggparsetheora.o oggparseflac.o daud.o + +# muxers +ifeq ($(CONFIG_MUXERS),yes) +OBJS+= flvenc.o movenc.o asf-enc.o +endif + + AMROBJS= ifeq ($(AMR_NB),yes) AMROBJS= amr.o @@ -32,8 +39,6 @@ # image formats OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o -# file I/O -OBJS+= avio.o aviobuf.o file.o OBJS+= framehook.o ifeq ($(CONFIG_VIDEO4LINUX),yes) @@ -62,6 +67,11 @@ PPOBJS+= beosaudio.o endif +# protocols I/O +OBJS+= avio.o aviobuf.o + +ifeq ($(CONFIG_PROTOCOLS),yes) +OBJS+= file.o ifeq ($(CONFIG_NETWORK),yes) OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o # BeOS and Darwin network stuff @@ -69,6 +79,7 @@ OBJS+= barpainet.o endif endif +endif ifeq ($(CONFIG_LIBOGG),yes) OBJS+= ogg.o