[Scummvm-cvs-logs] CVS: scummvm configure,1.46,1.47
Jonathan Gray
khalek at users.sourceforge.net
Tue Oct 14 08:52:14 CEST 2003
Update of /cvsroot/scummvm/scummvm
In directory sc8-pr-cvs1:/tmp/cvs-serv31779
Modified Files:
configure
Log Message:
let beos users use configure script, default to assuming unix like system if no match
Index: configure
===================================================================
RCS file: /cvsroot/scummvm/scummvm/configure,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- configure 6 Oct 2003 08:10:57 -0000 1.46
+++ configure 14 Oct 2003 15:51:11 -0000 1.47
@@ -344,7 +344,7 @@
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)
@@ -355,6 +355,20 @@
DEFINES="$DEFINES -DUNIX -DMACOSX"
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
More information about the Scummvm-git-logs
mailing list