diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-18 21:04:57 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-18 21:04:57 +0000 |
commit | 808fa33c9cc022301462e5f82b87067377e064b9 (patch) | |
tree | f926e778d3b78f7453ef6947f60306fe35019838 /configure | |
parent | fb823b779113c6ef9716f95635deb76b912e0595 (diff) | |
download | ffmpeg-808fa33c9cc022301462e5f82b87067377e064b9.tar.gz |
configure: group arch extention deps by arch
Originally committed as revision 21294 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -1098,22 +1098,27 @@ CMDLINE_APPEND=" # code dependency declarations # architecture extensions -altivec_deps="ppc" -amd3dnow_deps="mmx" -amd3dnowext_deps="amd3dnow" + armv5te_deps="arm" armv6_deps="arm" armv6t2_deps="arm" armvfp_deps="arm" iwmmxt_deps="arm" +neon_deps="arm" + mmi_deps="mips" + +altivec_deps="ppc" +ppc4xx_deps="ppc" + +vis_deps="sparc" + +amd3dnow_deps="mmx" +amd3dnowext_deps="amd3dnow" mmx_deps="x86" mmx2_deps="mmx" -neon_deps="arm" -ppc4xx_deps="ppc" sse_deps="mmx" ssse3_deps="sse" -vis_deps="sparc" fast_clz_if_any="alpha armv5te avr32 mips ppc x86" |