Mercurial > mplayer.hg
comparison configure @ 26598:ee15950f50a7
cosmetics: Fix indentation after last commit.
author | diego |
---|---|
date | Thu, 01 May 2008 13:46:17 +0000 |
parents | d66592752162 |
children | ebdaff17896e |
comparison
equal
deleted
inserted
replaced
26597:d66592752162 | 26598:ee15950f50a7 |
---|---|
2498 | 2498 |
2499 # check if <altivec.h> should be included | 2499 # check if <altivec.h> should be included |
2500 | 2500 |
2501 _def_altivec_h='#undef HAVE_ALTIVEC_H' | 2501 _def_altivec_h='#undef HAVE_ALTIVEC_H' |
2502 | 2502 |
2503 echocheck "altivec.h" | 2503 echocheck "altivec.h" |
2504 cat > $TMPC << EOF | 2504 cat > $TMPC << EOF |
2505 #include <altivec.h> | 2505 #include <altivec.h> |
2506 int main(void) { return 0; } | 2506 int main(void) { return 0; } |
2507 EOF | 2507 EOF |
2508 _have_altivec_h=no | 2508 _have_altivec_h=no |
2509 cc_check $_altivec_gcc_flags && _have_altivec_h=yes | 2509 cc_check $_altivec_gcc_flags && _have_altivec_h=yes |
2510 if test "$_have_altivec_h" = yes ; then | 2510 if test "$_have_altivec_h" = yes ; then |
2511 _def_altivec_h='#define HAVE_ALTIVEC_H 1' | 2511 _def_altivec_h='#define HAVE_ALTIVEC_H 1' |
2512 fi | 2512 fi |
2513 echores "$_have_altivec_h" | 2513 echores "$_have_altivec_h" |
2514 | 2514 |
2515 # disable runtime cpudetection if | 2515 # disable runtime cpudetection if |
2516 # - we cannot generate altivec code | 2516 # - we cannot generate altivec code |
2517 # - altivec is disabled by the user | 2517 # - altivec is disabled by the user |
2518 | 2518 |