comparison Makefile @ 2520:047f7bad4cbb libavcodec

01-makefile_fix_updated.patch Adds --enable-theora/--enable-vorbis/--enable-ogg to configure If compiled WITHOUT --enable-theora, native VP3 decoder is used patch by (Nilesh Bansal <nileshbansal gmail com>)
author michael
date Thu, 24 Feb 2005 15:18:02 +0000
parents fc23a5a86d97
children e55fcddd8392
comparison
equal deleted inserted replaced
2519:b34f2cac6a71 2520:047f7bad4cbb
116 ifeq ($(CONFIG_MP3LAME),yes) 116 ifeq ($(CONFIG_MP3LAME),yes)
117 OBJS += mp3lameaudio.o 117 OBJS += mp3lameaudio.o
118 EXTRALIBS += -lmp3lame 118 EXTRALIBS += -lmp3lame
119 endif 119 endif
120 120
121 ifeq ($(CONFIG_VORBIS),yes) 121 ifeq ($(CONFIG_LIBOGG),yes)
122 EXTRALIBS += -logg
123 ifeq ($(CONFIG_LIBVORBIS),yes)
122 OBJS += oggvorbis.o 124 OBJS += oggvorbis.o
123 EXTRALIBS += -lvorbis -lvorbisenc 125 EXTRALIBS += -lvorbis -lvorbisenc
126 endif
127 ifeq ($(CONFIG_LIBTHEORA), yes)
128 OBJS += oggtheora.o
129 EXTRALIBS += -ltheora
130 endif
124 endif 131 endif
125 132
126 ifeq ($(TARGET_GPROF),yes) 133 ifeq ($(TARGET_GPROF),yes)
127 CFLAGS+=-p 134 CFLAGS+=-p
128 LDFLAGS+=-p 135 LDFLAGS+=-p