aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure20
1 files changed, 7 insertions, 13 deletions
diff --git a/configure b/configure
index b4ac328..b440c5d 100755
--- a/configure
+++ b/configure
@@ -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