cosmetics: Fix bogus indentation.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23186 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-05-01 13:55:28 +00:00
parent ccf65593e6
commit ee2a11a935
1 changed files with 25 additions and 25 deletions

22
configure vendored
View File

@ -6525,17 +6525,17 @@ echores "$_nut"
# mencoder requires (optional) those libs: libmp3lame
if test "$_mencoder" != no ; then
echocheck "libmp3lame (for mencoder)"
_mp3lame=no
_def_mp3lame_preset='#undef HAVE_MP3LAME_PRESET'
_def_mp3lame_preset_medium='#undef HAVE_MP3LAME_PRESET_MEDIUM'
cat > $TMPC <<EOF
echocheck "libmp3lame (for mencoder)"
_mp3lame=no
_def_mp3lame_preset='#undef HAVE_MP3LAME_PRESET'
_def_mp3lame_preset_medium='#undef HAVE_MP3LAME_PRESET_MEDIUM'
cat > $TMPC <<EOF
#include <lame/lame.h>
int main(void) { lame_version_t lv; (void) lame_init(); get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor); return 0; }
EOF
# Note: libmp3lame usually depends on vorbis
cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes
if test "$_mp3lame" = yes ; then
# Note: libmp3lame usually depends on vorbis
cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes
if test "$_mp3lame" = yes ; then
_def_mp3lame="#define HAVE_MP3LAME"
_ld_mp3lame=-lmp3lame
_libs_mencoder="$_libs_mencoder $_ld_mp3lame"
@ -6557,10 +6557,10 @@ EOF
_lavc_mp3lame=no
_def_lavc_mp3lame="#undef CONFIG_LIBMP3LAME"
fi
else
else
_def_mp3lame='#undef HAVE_MP3LAME'
fi
echores "$_mp3lame"
fi
echores "$_mp3lame"
fi