diff options
author | Martin Storsjö <martin@martin.st> | 2014-11-18 13:52:26 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-11-18 18:53:57 +0200 |
commit | 7813e6752bdab38a5686c301e869ee71d97bce69 (patch) | |
tree | da0e7cd9f5cd1dac4d289ef48888db48c5903144 | |
parent | 2007082d2db25f9305b8a345798b840ea7784fdb (diff) | |
download | ffmpeg-7813e6752bdab38a5686c301e869ee71d97bce69.tar.gz |
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: libav-stable@libav.org
Signed-off-by: Martin Storsjö <martin@martin.st>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4524,7 +4524,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 |