From 26f561576260616c4f1f4d7b0a93337bc23f3470 Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 10 May 2008 13:40:36 +0000 Subject: Replace some if constructs with && in the AltiVec test. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26716 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 00fe82a93d..5f249bfed1 100755 --- a/configure +++ b/configure @@ -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 -- cgit v1.2.3