[MPlayer-cvslog] r21132 - trunk/configure
diego
subversion at mplayerhq.hu
Tue Nov 21 16:12:56 CET 2006
Author: diego
Date: Tue Nov 21 16:12:55 2006
New Revision: 21132
Modified:
trunk/configure
Log:
Fix linking when libavcodec uses x264.
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Tue Nov 21 16:12:55 2006
@@ -6420,8 +6420,8 @@
int main(void) { x264_encoder_open((void*)0); return 0; }
EOF
_x264=no
- for _ld_tmp in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_x11 $_ld_lm" ; do
- cc_check $_ld_tmp && _libs_mencoder="$_libs_mencoder $_ld_tmp" && _x264=yes && break
+ for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_x11 $_ld_lm" ; do
+ cc_check $_ld_tmp && _libs_mencoder="$_libs_mencoder $_ld_x264" && _x264=yes && break
done
fi
@@ -6432,6 +6432,7 @@
if echo $_libavencoders | grep -q x264 ; then
_lavc_x264=yes
_def_lavc_x264='#define CONFIG_X264 1'
+ _libs_mplayer="$_libs_mplayer $_ld_x264"
else
_lavc_x264=no
_def_lavc_x264='#undef CONFIG_X264'
@@ -7365,9 +7366,6 @@
ifeq ($_lavc_mp3lame,yes)
EXTRA_LIB += $_ld_mp3lame
endif
-ifeq ($_lavc_x264,yes)
-EXTRA_LIB += $_ld_x264
-endif
FREETYPE_LIB = $_ld_freetype
FONTCONFIG_LIB = $_ld_fontconfig
More information about the MPlayer-cvslog
mailing list