summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-08 14:10:43 +0000
committerrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-08 14:10:43 +0000
commitf0996fb64cd26f96f203c5d5e39bb0a2d691d155 (patch)
tree161299dbf859d922e4c8f042eff62114c945d84a /Makefile
parent9369a84ebe099be0377acd6d34aeb591934fd5b5 (diff)
downloadmpv-f0996fb64cd26f96f203c5d5e39bb0a2d691d155.tar.bz2
mpv-f0996fb64cd26f96f203c5d5e39bb0a2d691d155.tar.xz
Disable linking mplayer with mp3lame when --disable-encoder=mp3lame is
passed to configure. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20114 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 177e381cea..98c8c6aad6 100644
--- a/Makefile
+++ b/Makefile
@@ -99,7 +99,6 @@ CODEC_LIBS = $(AV_LIB) \
$(THEORA_LIB) \
$(FAAD_LIB) \
$(LIBLZO_LIB) \
- $(DECORE_LIB) \
$(XVID_LIB) \
$(DTS_LIB) \
$(PNG_LIB) \
@@ -112,6 +111,10 @@ CODEC_LIBS = $(AV_LIB) \
$(SPEEX_LIB) \
$(NUT_LIB) \
+ifeq ($(LAVC_MP3LAME),yes)
+CODEC_LIBS += $(MP3LAME_LIB)
+endif
+
ifeq ($(TOOLAME),yes)
CODEC_LIBS += $(TOOLAME_LIB)
endif
@@ -388,7 +391,7 @@ $(PRG): $(MPLAYER_DEP)
ifeq ($(MENCODER),yes)
LIBS_MENCODER = libmpcodecs/libmpencoders.a \
- $(ENCORE_LIB) \
+ $(MP3LAME_LIB) \
$(COMMON_LIBS) \
$(PRG_MENCODER): $(MENCODER_DEP)