summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNilesh Bansal <nileshbansal@gmail.com>2005-02-24 15:18:02 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-02-24 15:18:02 +0000
commit5c5dea3f0c495e371faa2962cde83dc187bdf2e4 (patch)
tree79114f92e1f67bd8b55a24423132f2debebf3082 /Makefile
parent738386a5ed5eff0dbad36c33ff96b3b3d4d80af6 (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a4c67453a3..25499724ef 100644
--- a/Makefile
+++ b/Makefile
@@ -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)