Mercurial > mplayer.hg
changeset 20208:04ae7a7d0da3
Remove intrinsics check, they are no longer used in FFmpeg.
author | diego |
---|---|
date | Sat, 14 Oct 2006 16:32:15 +0000 |
parents | dc4afdf288fb |
children | 3699ab89b154 |
files | configure |
diffstat | 1 files changed, 0 insertions(+), 37 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Sat Oct 14 16:31:41 2006 +0000 +++ b/configure Sat Oct 14 16:32:15 2006 +0000 @@ -1508,40 +1508,6 @@ fi -# intrinsics headers for use with FFmpeg -if test "$_sse" = yes ; then - echocheck "xmmintrin.h" - cat > $TMPC << EOF -#include <xmmintrin.h> -int main() { _mm_sfence(); return 0; } -EOF - _builtin_vector=no - cc_check -msse && _builtin_vector=yes - if test "$_builtin_vector" = yes ; then - _def_builtin_vector='#define HAVE_BUILTIN_VECTOR 1' - else - _def_builtin_vector='#undef HAVE_BUILTIN_VECTOR' - fi - echores "$_builtin_vector" -fi - -if test "$_3dnow" = yes ; then - echocheck "mm3dnow.h" - cat > $TMPC << EOF -#include <mm3dnow.h> -int main() { _m_femms(); return 0; } -EOF - _mm3dnow=no - cc_check -m3dnow && _mm3dnow=yes - if test "$_mm3dnow" = yes ; then - _def_mm3dnow='#define HAVE_MM3DNOW 1' - else - _def_mm3dnow='#undef HAVE_MM3DNOW' - fi - echores "$_mm3dnow" -fi - - echocheck "assembler support of -pipe option" cat > $TMPC << EOF int main(void) { return 0; } @@ -8345,9 +8311,6 @@ $_def_altivec_h // enables usage of altivec.h -$_def_builtin_vector // enables usage of xmmintrin.h -$_def_mm3dnow // enables usage of mm3dnow.h - $_def_mlib // Sun mediaLib, available only on solaris $_def_vis // only define if you have VIS ( ultrasparc )