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

cosmetics: Fix indentation after last commit.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20790 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-11-08 18:36:46 +00:00
parent 7accc82228
commit 2afd79af34

20
configure vendored
View File

@ -6384,13 +6384,14 @@ else
fi fi
echores "$_bl" echores "$_bl"
echocheck "XviD 3" echocheck "XviD 3"
if test "$_xvid3" = auto ; then if test "$_xvid3" = auto ; then
cat > $TMPC << EOF cat > $TMPC << EOF
#include <xvid.h> #include <xvid.h>
int main(void) { xvid_init(0, 0, 0, 0); return 0; } int main(void) { xvid_init(0, 0, 0, 0); return 0; }
EOF EOF
_ld_xvid="$_ld_xvid -lxvidcore" _ld_xvid="$_ld_xvid -lxvidcore"
_xvid3=no _xvid3=no
cc_check $_ld_xvid $_ld_lm && _xvid3=yes cc_check $_ld_xvid $_ld_lm && _xvid3=yes
fi fi
@ -6404,6 +6405,7 @@ else
fi fi
echores "$_xvid3" echores "$_xvid3"
echocheck "XviD 4" echocheck "XviD 4"
if test "$_xvid4" = auto ; then if test "$_xvid4" = auto ; then
_xvid4=no _xvid4=no
@ -6417,13 +6419,13 @@ EOF
done done
fi fi
if test "$_xvid4" = yes ; then if test "$_xvid4" = yes ; then
_def_xvid4='#define HAVE_XVID4 1' _def_xvid4='#define HAVE_XVID4 1'
_codecmodules="xvid4 $_codecmodules" _codecmodules="xvid4 $_codecmodules"
else else
_def_xvid4='#undef HAVE_XVID4' _def_xvid4='#undef HAVE_XVID4'
_nocodecmodules="xvid4 $_nocodecmodules" _nocodecmodules="xvid4 $_nocodecmodules"
fi fi
echores "$_xvid4" echores "$_xvid4"
if test "$_xvid4" = yes ; then if test "$_xvid4" = yes ; then