# HG changeset patch # User cehoyos # Date 1356042951 0 # Node ID 9bc76ce5b1df52803cefa794017968518645c7ba # Parent 3faac0ea318ef472b8afb9850cf18be8f4ef538f Replace ARMVFP by VFP as currrently used by FFmpeg. Patch by Erik Auerswald, auerswal at unix-ag uni-kl de diff -r 3faac0ea318e -r 9bc76ce5b1df configure --- a/configure Wed Dec 19 14:13:36 2012 +0000 +++ b/configure Thu Dec 20 22:35:51 2012 +0000 @@ -3042,7 +3042,7 @@ echores "$_iwmmxt" fi -cpuexts_all='ALTIVEC AVX MMX MMX2 MMXEXT AMD3DNOW AMD3DNOWEXT SSE SSE2 SSE3 SSSE3 SSE4 SSE42 FAST_CMOV CMOV FAST_CLZ ARMV5TE ARMV6 ARMV6T2 ARMVFP VFPV3 NEON IWMMXT MMI VIS MVI' +cpuexts_all='ALTIVEC AVX MMX MMX2 MMXEXT AMD3DNOW AMD3DNOWEXT SSE SSE2 SSE3 SSSE3 SSE4 SSE42 FAST_CMOV CMOV FAST_CLZ ARMV5TE ARMV6 ARMV6T2 VFP VFPV3 NEON IWMMXT MMI VIS MVI' test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts" test "$_mmx" = yes && cpuexts="MMX $cpuexts" test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts" @@ -3062,7 +3062,7 @@ test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts" test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts" test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts" -test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts" +test "$_armvfp" = yes && cpuexts="VFP $cpuexts" test "$vfpv3" = yes && cpuexts="VFPV3 $cpuexts" test "$neon" = yes && cpuexts="NEON $cpuexts" test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"