1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-06 08:29:25 +02:00

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>)

Originally committed as revision 3975 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Nilesh Bansal
2005-02-24 15:18:02 +00:00
committed by Michael Niedermayer
parent 738386a5ed
commit 5c5dea3f0c
8 changed files with 67 additions and 10 deletions

View File

@@ -43,8 +43,14 @@ EXTRALIBS+=-lmp3lame
endif
endif
ifeq ($(CONFIG_VORBIS),yes)
EXTRALIBS+=-lvorbis -lvorbisenc -logg
ifeq ($(CONFIG_LIBOGG),yes)
EXTRALIBS+= -logg
ifeq ($(CONFIG_LIBVORBIS),yes)
EXTRALIBS+= -lvorbis -lvorbisenc
endif
ifeq ($(CONFIG_LIBTHEORA),yes)
EXTRALIBS+= -ltheora
endif
endif
ifeq ($(CONFIG_FAAD),yes)