Pierre, I think that the patch should test if architecture is x86_64 or x86 and than execute your code:
if test "x$enable_mmx" = "xno"; then
ff_conf_args="$ff_conf_args --disable-mmx"
fi
I think that there's no meaning in putting --disable-mmx in non x86 platforms.
and the patch bellow, that plays with a related issue, I think that should be
applied to tree too:
Index: configure.in
===================================================================
--- configure.in (revision 948)
+++ configure.in (working copy)
@@ -297,9 +297,12 @@
fi
# 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
+#
but without than, at least x86, x86_64 and ppc compiles well :-)
bye,
rafael diniz
Em Sábado 28 Outubro 2006 12:49, Pierre Marc Dumuid escreveu:
> I fixed this for gour and Jean-Luc (see discussion in IRC log).. Could
> you confirm that it is fixed for yourself? (I assume you don't configure
> with --enable-mmx)
>
> Pierre
--
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
pgpgHk3Nm4rwa.pgp
Description: PGP signature
