On 2014-08-06 05:57:38 -0700, Diego Biurrun wrote: > --- > configure | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/configure b/configure > index c8c57b9..45da142 100755 > --- a/configure > +++ b/configure > @@ -3779,8 +3779,8 @@ EOF > } > > if enabled asm; then > - enabled arm aarch64 && nogas=die > - enabled_all ppc altivec && nogas=warn > + enabled_any arm aarch64 && nogas=die > + enabled altivec && nogas=warn
actually not ok since altivec is always enabled at this point if the arch is not ppc. It's enabled via $ARCH_EXT_LIST and disabled only after this via check deps Janne _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
