0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Replace some if constructs with && in the AltiVec test.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26716 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-05-10 13:40:36 +00:00
parent 3f747ea3a7
commit 26f5615762

14
configure vendored
View File

@ -2457,19 +2457,15 @@ EOF
# Disable runtime cpudetection if we cannot generate AltiVec code or
# AltiVec is disabled by the user.
if test "$_runtime_cpudetection" = yes -a "$_altivec" = no ; then
_runtime_cpudetection=no
fi
test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
&& _runtime_cpudetection=no
# Show that we are optimizing for AltiVec (if enabled and supported).
if test "$_runtime_cpudetection" = no -a "$_altivec" = yes ; then
_optimizing="$_optimizing altivec"
fi
test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
&& _optimizing="$_optimizing altivec"
# If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
if test "$_altivec" = yes ; then
CFLAGS="$CFLAGS $_altivec_gcc_flags"
fi
test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
fi
if arm ; then