summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorVíctor Paesa <wzrlpy@arsystel.com>2005-03-18 02:13:13 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-03-18 02:13:13 +0000
commit078a8dd66d8172f12c780b723bcc70a9c4d7abec (patch)
tree6a6d9db12a42cd6e0f30b4ab332b86108cc3c002 /libavcodec/Makefile
parent8bb8f41375ac9a00de22b875e867a3a30904c2a9 (diff)
ogg has to be at the right of vorbis patch by ("Víctor Paesa" wzrlpy hotmail com)
Originally committed as revision 4055 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index c15e2761c4..8a966706c2 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -125,15 +125,15 @@ EXTRALIBS += -lmp3lame
endif
ifeq ($(CONFIG_LIBOGG),yes)
-EXTRALIBS += -logg
ifeq ($(CONFIG_LIBVORBIS),yes)
OBJS += oggvorbis.o
-EXTRALIBS += -lvorbis -lvorbisenc
+EXTRALIBS += -lvorbisenc -lvorbis
endif
ifeq ($(CONFIG_LIBTHEORA), yes)
OBJS += oggtheora.o
EXTRALIBS += -ltheora
endif
+EXTRALIBS += -logg
endif
ifeq ($(TARGET_GPROF),yes)