changeset 26683:57ee6b0e465d

cosmetics: whitespace changes, spelling, code moving in AltiVec test.
author diego
date Sat, 10 May 2008 13:23:05 +0000
parents d1355b7db297
children 45d4ce126ce7
files configure
diffstat 1 files changed, 6 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat May 10 12:38:35 2008 +0000
+++ b/configure	Sat May 10 13:23:05 2008 +0000
@@ -2413,12 +2413,9 @@
 #FIXME: This should happen before the check for CFLAGS..
 if test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ; then
 
-    # check if altivec is supported by the compiler, and how to enable it
-
+    # check if AltiVec is supported by the compiler, and how to enable it
+    echocheck "GCC altivec support"
     _altivec_gcc_flags=''
-
-    echocheck "GCC altivec support"
-
     p=''
     cat > $TMPC << EOF
 int main(void) { return 0; }
@@ -2428,26 +2425,22 @@
 
     # check for Darwin-style flags first, since gcc-3.3 (August Update
     # from Apple) on MacOS 10.2.8 accepts but ignores FSF-style flags...
-
     if test -z "$p"; then
         cc_check $Darwin_flags && p='Darwin'
     fi
     if test -z "$p"; then
         cc_check $FSF_flags && p='FSF'
     fi
-
     case $p in
         FSF) _altivec_gcc_flags="$FSF_flags" _altivec=yes ;;
         Darwin) _altivec_gcc_flags="$Darwin_flags" _altivec=yes ;;
         *) _altivec=no ;;
     esac
-
     if test -z "$p"; then
         p=none
     else
         p="$p-style ($_altivec_gcc_flags)"
     fi
-
     echores "$p"
 
     # check if <altivec.h> should be included
@@ -2462,22 +2455,18 @@
         && _def_altivec_h='#define HAVE_ALTIVEC_H 1'
     echores "$_have_altivec_h"
 
-    # disable runtime cpudetection if
-    # - we cannot generate altivec code
-    # - altivec is disabled by the user
-
+    # 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
 
-    # show that we are optimizing for altivec (if enabled and supported)
-
+    # Show that we are optimizing for AltiVec (if enabled and supported).
     if test "$_runtime_cpudetection" = no -a "$_altivec" = yes ; then
 	_optimizing="$_optimizing altivec"
     fi
 
-    # if altivec is enabled, make sure the correct flags turn up in CFLAGS
-
+    # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
     if test "$_altivec" = yes ; then
         CFLAGS="$CFLAGS $_altivec_gcc_flags"
     fi