comparison configure @ 16830:626e5ea95907

Add a comment to else clauses where the if is very far away.
author diego
date Sun, 23 Oct 2005 11:26:36 +0000
parents a0a0ee2715ea
children 14185247b041
comparison
equal deleted inserted replaced
16829:c1aabebbe2e7 16830:626e5ea95907
538 vax) host_arch=vax ;; 538 vax) host_arch=vax ;;
539 *) host_arch=UNKNOWN ;; 539 *) host_arch=UNKNOWN ;;
540 esac 540 esac
541 ;; 541 ;;
542 esac 542 esac
543 else 543 else # if test -z "$_target"
544 system_name=`echo $_target | cut -d '-' -f 2` 544 system_name=`echo $_target | cut -d '-' -f 2`
545 case "`echo $system_name | tr A-Z a-z`" in 545 case "`echo $system_name | tr A-Z a-z`" in
546 linux) system_name=Linux ;; 546 linux) system_name=Linux ;;
547 freebsd) system_name=FreeBSD ;; 547 freebsd) system_name=FreeBSD ;;
548 netbsd) system_name=NetBSD ;; 548 netbsd) system_name=NetBSD ;;
982 else 982 else
983 _march="-march=$proc" 983 _march="-march=$proc"
984 _mcpu="$cpuopt=$proc" 984 _mcpu="$cpuopt=$proc"
985 _optimizing="$proc" 985 _optimizing="$proc"
986 fi 986 fi
987 else 987 else # if test "$_runtime_cpudetection" = no
988 # i686 is probably the most common CPU - optimize for it 988 # i686 is probably the most common CPU - optimize for it
989 _mcpu="$cpuopt=i686" 989 _mcpu="$cpuopt=i686"
990 # at least i486 required, for bswap instruction 990 # at least i486 required, for bswap instruction
991 _march="-march=i486" 991 _march="-march=i486"
992 cc_check $_mcpu || _mcpu="" 992 cc_check $_mcpu || _mcpu=""