mirror of
https://github.com/libretro/scummvm.git
synced 2025-05-13 17:46:22 +00:00
let beos users use configure script, default to assuming unix like system if no match
svn-id: r10800
This commit is contained in:
parent
93f64e3357
commit
c465b13545
16
configure
vendored
16
configure
vendored
@ -344,7 +344,7 @@ printf "Checking hosttype... "
|
|||||||
hosttype=`uname -s`
|
hosttype=`uname -s`
|
||||||
echo $hosttype
|
echo $hosttype
|
||||||
case $hosttype in
|
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"
|
DEFINES="$DEFINES -DUNIX"
|
||||||
;;
|
;;
|
||||||
IRIX)
|
IRIX)
|
||||||
@ -356,6 +356,20 @@ case $hosttype in
|
|||||||
LIBS="$LIBS -framework QuickTime -framework AudioUnit"
|
LIBS="$LIBS -framework QuickTime -framework AudioUnit"
|
||||||
#CXXFLAGS="$CXXFLAGS -faltivec"
|
#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
|
esac
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user