Mercurial > mplayer.hg
comparison configure @ 20774:eb2c12485aac
cosmetics: Fix indentation after last commit.
author | diego |
---|---|
date | Wed, 08 Nov 2006 18:36:46 +0000 |
parents | ef6ce7551081 |
children | 72b7811b21d3 |
comparison
equal
deleted
inserted
replaced
20773:ef6ce7551081 | 20774:eb2c12485aac |
---|---|
6382 _def_bl='#undef HAVE_BL' | 6382 _def_bl='#undef HAVE_BL' |
6383 _novomodules="bl $_novomodules" | 6383 _novomodules="bl $_novomodules" |
6384 fi | 6384 fi |
6385 echores "$_bl" | 6385 echores "$_bl" |
6386 | 6386 |
6387 | |
6387 echocheck "XviD 3" | 6388 echocheck "XviD 3" |
6388 if test "$_xvid3" = auto ; then | 6389 if test "$_xvid3" = auto ; then |
6389 cat > $TMPC << EOF | 6390 cat > $TMPC << EOF |
6390 #include <xvid.h> | 6391 #include <xvid.h> |
6391 int main(void) { xvid_init(0, 0, 0, 0); return 0; } | 6392 int main(void) { xvid_init(0, 0, 0, 0); return 0; } |
6392 EOF | 6393 EOF |
6393 _ld_xvid="$_ld_xvid -lxvidcore" | 6394 _ld_xvid="$_ld_xvid -lxvidcore" |
6394 _xvid3=no | 6395 _xvid3=no |
6395 cc_check $_ld_xvid $_ld_lm && _xvid3=yes | 6396 cc_check $_ld_xvid $_ld_lm && _xvid3=yes |
6396 fi | 6397 fi |
6397 | 6398 |
6398 if test "$_xvid3" = yes ; then | 6399 if test "$_xvid3" = yes ; then |
6401 else | 6402 else |
6402 _def_xvid3='#undef HAVE_XVID3' | 6403 _def_xvid3='#undef HAVE_XVID3' |
6403 _nocodecmodules="xvid3 $_nocodecmodules" | 6404 _nocodecmodules="xvid3 $_nocodecmodules" |
6404 fi | 6405 fi |
6405 echores "$_xvid3" | 6406 echores "$_xvid3" |
6407 | |
6406 | 6408 |
6407 echocheck "XviD 4" | 6409 echocheck "XviD 4" |
6408 if test "$_xvid4" = auto ; then | 6410 if test "$_xvid4" = auto ; then |
6409 _xvid4=no | 6411 _xvid4=no |
6410 _ld_xvid="$_ld_xvid -lxvidcore $_ld_lm" | 6412 _ld_xvid="$_ld_xvid -lxvidcore $_ld_lm" |
6415 for _ld_tmp in "$_ld_xvid" "$_ld_xvid $_ld_pthread" ; do | 6417 for _ld_tmp in "$_ld_xvid" "$_ld_xvid $_ld_pthread" ; do |
6416 cc_check $_ld_tmp && _ld_xvid="$_ld_tmp" && _xvid4=yes && break | 6418 cc_check $_ld_tmp && _ld_xvid="$_ld_tmp" && _xvid4=yes && break |
6417 done | 6419 done |
6418 fi | 6420 fi |
6419 | 6421 |
6420 if test "$_xvid4" = yes ; then | 6422 if test "$_xvid4" = yes ; then |
6421 _def_xvid4='#define HAVE_XVID4 1' | 6423 _def_xvid4='#define HAVE_XVID4 1' |
6422 _codecmodules="xvid4 $_codecmodules" | 6424 _codecmodules="xvid4 $_codecmodules" |
6423 else | 6425 else |
6424 _def_xvid4='#undef HAVE_XVID4' | 6426 _def_xvid4='#undef HAVE_XVID4' |
6425 _nocodecmodules="xvid4 $_nocodecmodules" | 6427 _nocodecmodules="xvid4 $_nocodecmodules" |
6426 fi | 6428 fi |
6427 echores "$_xvid4" | 6429 echores "$_xvid4" |
6428 | 6430 |
6429 if test "$_xvid4" = yes ; then | 6431 if test "$_xvid4" = yes ; then |
6430 echocheck "XviD two pass plugin" | 6432 echocheck "XviD two pass plugin" |
6431 cat > $TMPC << EOF | 6433 cat > $TMPC << EOF |