configure: arm: do not enable fast-unaligned if it is explicitly disabled via commandline

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Yu Xiaolei 2014-05-20 10:14:05 +08:00 committed by Michael Niedermayer
parent 6310eb8010
commit 2491579d47

5
configure vendored
View File

@ -3615,7 +3615,10 @@ elif enabled arm; then
case "$subarch" in
armv5t*) enable fast_clz ;;
armv[6-8]*) enable fast_clz fast_unaligned ;;
armv[6-8]*)
enable fast_clz
disabled fast_unaligned || enable fast_unaligned
;;
esac
elif enabled avr32; then