Module: libav Branch: release/11 Commit: 93bf4a74de99300fdc0deb83f672bf12e6f1c262
Author: Martin Storsjö <[email protected]> Committer: Luca Barbato <[email protected]> Date: Tue Nov 18 13:52:26 2014 +0200 configure: Fix enabling memalign_hack automatically simd_align_16 is a configure item that can be enabled or disabled, it's not a variable containing a list of other configure items as need_memalign previously. This was broken in eba2233b5. CC: [email protected] Signed-off-by: Martin Storsjö <[email protected]> (cherry picked from commit 7813e6752bdab38a5686c301e869ee71d97bce69) Signed-off-by: Luca Barbato <[email protected]> --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index c073f30..ee57ed9 100755 --- a/configure +++ b/configure @@ -4469,7 +4469,7 @@ enabled_all dxva2 CoTaskMemFree && enable dxva2_lib ! enabled_any memalign posix_memalign aligned_malloc && - enabled $simd_align_16 && enable memalign_hack + enabled simd_align_16 && enable memalign_hack map 'enabled $v && intrinsics=${v#intrinsics_}' $INTRINSICS_LIST _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
