aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray2003-10-14 15:51:11 +0000
committerJonathan Gray2003-10-14 15:51:11 +0000
commitc465b135452a1f07a30d0fb8c6519f8e58ccf158 (patch)
treee9c17a24136b772211b954fc2aad3c703fbc0422
parent93f64e3357aebd0153e98dceab08fe17960a3c79 (diff)
downloadscummvm-rg350-c465b135452a1f07a30d0fb8c6519f8e58ccf158.tar.gz
scummvm-rg350-c465b135452a1f07a30d0fb8c6519f8e58ccf158.tar.bz2
scummvm-rg350-c465b135452a1f07a30d0fb8c6519f8e58ccf158.zip
let beos users use configure script, default to assuming unix like system if no match
svn-id: r10800
-rwxr-xr-xconfigure16
1 files changed, 15 insertions, 1 deletions
diff --git a/configure b/configure
index 932caba554..3fa997287d 100755
--- a/configure
+++ b/configure
@@ -344,7 +344,7 @@ printf "Checking hosttype... "
hosttype=`uname -s`
echo $hosttype
case $hosttype in
- Linux | OpenBSD | FreeBSD | NetBSD | BSD/OS | SunOS | HP-UX)
+ Linux | OpenBSD | FreeBSD | NetBSD | BSD/OS | SunOS | HP-UX | BeOS)
DEFINES="$DEFINES -DUNIX"
;;
IRIX)
@@ -356,6 +356,20 @@ case $hosttype in
LIBS="$LIBS -framework QuickTime -framework AudioUnit"
#CXXFLAGS="$CXXFLAGS -faltivec"
;;
+ MINGW32*)
+ echo "mingw32 not supported by configure script"
+ echo "Try 'make -f Makefile.mingw'"
+ exit 1
+ ;;
+ CYGWIN*)
+ echo "cygwin not supported by configure script"
+ exit 1
+ ;;
+ # given this is a shell script assume some type of unix
+ *)
+ echo "WARNING: could not establish system type, assuming unix like"
+ DEFINES="$DEFINES -DUNIX"
+ ;;
esac
#