Module: libav Branch: master Commit: 444c73583d2848a542330c03949e1f933ac68f53
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Wed Aug 6 05:55:33 2014 -0700 configure: Only run gas checks on ARM and PowerPC Standalone GNU assembly is not used on x86. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 924fd46..c128b29 100755 --- a/configure +++ b/configure @@ -3777,7 +3777,7 @@ EOF return 0 } -if enabled asm; then +if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then enabled_any arm aarch64 && nogas=die enabled_all ppc altivec && nogas=warn _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
