0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

configure: Set CONFIG_ENCODERS=yes in config.mak unconditionally

config.h already had "#define CONFIG_ENCODERS 1" unconditionally, but
the config.mak value depended on whether MEncoder was enabled.
Encoders need to be enabled as some encoder code is used by MPlayer
too. The inconsistent values broke compilation with --disable-mencoder
after libavcodec Makefile made compilation of i386/dsputilenc_mmx.o
depend on the config.mak value.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26142 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
uau 2008-03-03 03:02:36 +00:00
parent a27f73390f
commit 2e16b2826a

2
configure vendored
View File

@ -7805,7 +7805,7 @@ CONFIG_LIBXVID=$_lavc_xvid
CONFIG_LIBX264=$_lavc_x264 CONFIG_LIBX264=$_lavc_x264
CONFIG_ZLIB=$_zlib CONFIG_ZLIB=$_zlib
CONFIG_GPL=yes CONFIG_GPL=yes
CONFIG_ENCODERS=$_mencoder CONFIG_ENCODERS=yes
CONFIG_MUXERS=$_mencoder CONFIG_MUXERS=$_mencoder
# Prevent building libavcodec/imgresample.c with conflicting symbols # Prevent building libavcodec/imgresample.c with conflicting symbols
CONFIG_SWSCALER=yes CONFIG_SWSCALER=yes