summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-21 13:53:32 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-21 13:53:32 +0000
commit196ec9d95f67b9baf9111432b901d816d646b838 (patch)
tree47274ba03cac6190e71bdf2939a0df1b9e7609e6 /configure
parent7c04fdf4c4c0d17a5dc69cbaf3164360997f1184 (diff)
downloadmpv-196ec9d95f67b9baf9111432b901d816d646b838.tar.bz2
mpv-196ec9d95f67b9baf9111432b901d816d646b838.tar.xz
Remove _ld_x264 _toolame_lib _twolame_lib, they are no longer needed.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21131 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 5 insertions, 6 deletions
diff --git a/configure b/configure
index 39a79812e4..1cd6700f54 100755
--- a/configure
+++ b/configure
@@ -5545,7 +5545,7 @@ EOF
fi
if test "$_toolame" = yes ; then
_def_toolame='#define HAVE_TOOLAME 1'
- _toolame_lib="-ltoolame"
+ _libs_mencoder="$_libs_mencoder -ltoolame"
_codecmodules="toolame $_codecmodules"
else
_def_toolame='#undef HAVE_TOOLAME'
@@ -5563,15 +5563,14 @@ if test "$_twolame" = auto ; then
int main(void) { twolame_init(); return 0; }
EOF
_twolame=no
- _twolame_lib="-ltwolame"
- cc_check $_twolame_lib $_ld_lm && _twolame=yes
+ cc_check -ltwolame $_ld_lm && _twolame=yes
fi
if test "$_twolame" = yes ; then
_def_twolame='#define HAVE_TWOLAME 1'
+ _libs_mencoder="$_libs_mencoder -ltwolame"
_codecmodules="twolame $_codecmodules"
else
_def_twolame='#undef HAVE_TWOLAME'
- _twolame_lib=""
_nocodecmodules="twolame $_nocodecmodules"
fi
echores "$_twolame"
@@ -6422,7 +6421,7 @@ 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 && _ld_x264="$_ld_tmp" && _x264=yes && break
+ cc_check $_ld_tmp && _libs_mencoder="$_libs_mencoder $_ld_tmp" && _x264=yes && break
done
fi
@@ -7359,7 +7358,7 @@ EXTRA_LIB = $_ld_extra \
$_ld_vorbis $_ld_theora $_xmms_lib \
$_ld_arch
EXTRALIBS_MPLAYER = $_libs_mplayer $_ld_x11 $_ld_sock $_ld_static $_ld_gtk $_ld_glib
-EXTRA_LIB_MENCODER = $_libs_mencoder $_ld_mp3lame $_ld_x264 $_toolame_lib $_twolame_lib $_ld_faac
+EXTRA_LIB_MENCODER = $_libs_mencoder $_ld_mp3lame $_ld_faac
ifeq ($_lavc_faac,yes)
EXTRA_LIB += $_ld_faac
endif