Commit 7b17ad84 authored by Diego Biurrun's avatar Diego Biurrun

Get rid of unnecessary conditionals.

Originally committed as revision 8617 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2d93bcc7
...@@ -155,19 +155,14 @@ endif ...@@ -155,19 +155,14 @@ endif
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) \ EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) \
-lavcodec$(BUILDSUF) -L$(BUILD_ROOT)/libavcodec $(EXTRALIBS) -lavcodec$(BUILDSUF) -L$(BUILD_ROOT)/libavcodec $(EXTRALIBS)
ifeq ($(CONFIG_AUDIO_BEOS),yes) CPPOBJS-$(CONFIG_AUDIO_BEOS) += beosaudio.o
CPPOBJS+= beosaudio.o
endif
# protocols I/O # protocols I/O
OBJS+= avio.o aviobuf.o OBJS+= avio.o aviobuf.o
ifeq ($(CONFIG_PROTOCOLS),yes) OBJS-$(CONFIG_PROTOCOLS) += file.o
OBJS+= file.o OBJS-$(CONFIG_NETWORK) += udp.o tcp.o http.o rtsp.o rtp.o \
endif rtpproto.o mpegts.o rtp_h264.o
ifeq ($(CONFIG_NETWORK),yes)
OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o mpegts.o rtp_h264.o
endif
NAME=avformat NAME=avformat
LIBVERSION=$(LAVFVERSION) LIBVERSION=$(LAVFVERSION)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment