configure: style changes

* configure (case $targetos): Improve readibility.
(case $cpu): New, to improve readability compare to if + test.
master
Akim Demaille 2012-12-21 13:41:43 +01:00
parent 5ebc6a964d
commit 9c9ca2032b
1 changed files with 7 additions and 13 deletions

20
configure vendored
View File

@ -101,16 +101,10 @@ EXESUF=""
# OS specific
targetos=`uname -s`
case $targetos in
MINGW32*)
mingw32="yes"
;;
DragonFly)
noldl="yes"
;;
OpenBSD)
noldl="yes"
;;
*) ;;
MINGW32*) mingw32=yes;;
DragonFly) noldl=yes;;
OpenBSD) noldl=yes;;
*) ;;
esac
# find source path
@ -231,9 +225,9 @@ fi
else
# if cross compiling, cannot launch a program, so make a static guess
if test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "s390" ; then
bigendian="yes"
fi
case $cpu in
powerpc|mips|s390) bigendian=yes;;
esac
fi