I made a patch to do include --disable-altivec only if target_cpu is powerpc.
bye, rafael diniz -- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- Eng. da Computação @ Unicamp Radio Muda, radiolivre.org, Centro de Mídia Independente Chave PGP: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x2FF86098 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
Index: configure.in =================================================================== --- configure.in (revision 947) +++ configure.in (working copy) @@ -293,9 +293,12 @@ ff_conf_args=" " # Where altivec is not present -if test "x$enable_altivec" = "xno"; then - ff_conf_args="$ff_conf_args --disable-altivec" +if test "x$target_cpu" = "xpowerpc"; then + if test "x$enable_altivec" = "xno"; then + ff_conf_args="$ff_conf_args --disable-altivec" + fi fi +# srcdir_c=$(readlink -f $srcdir) mkdir -p quicktime/ffmpeg/ > /dev/null 2>&1
pgpa3qbQIWIpO.pgp
Description: PGP signature
