# HG changeset patch # User cehoyos # Date 1344121258 0 # Node ID 6671300060550bc346235acb22653184f7672f19 # Parent 0ba5ba56f6d070d80b4b2aba2d8f90e649a0459e Fix compilation with latest FFmpeg. diff -r 0ba5ba56f6d0 -r 667130006055 configure --- a/configure Thu Aug 02 23:28:04 2012 +0000 +++ b/configure Sat Aug 04 23:00:58 2012 +0000 @@ -2961,10 +2961,11 @@ echores "$_iwmmxt" fi -cpuexts_all='ALTIVEC AVX MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 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 SSSE3 FAST_CMOV CMOV FAST_CLZ ARMV5TE ARMV6 ARMV6T2 ARMVFP VFPV3 NEON IWMMXT MMI VIS MVI' test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts" test "$_mmx" = yes && cpuexts="MMX $cpuexts" test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts" +test "$_mmxext" = yes && cpuexts="MMXEXT $cpuexts" test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts" test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts" test "$_sse" = yes && cpuexts="SSE $cpuexts"