[Scummvm-cvs-logs] CVS: scummvm configure,1.107,1.108

Max Horn fingolfin at users.sourceforge.net
Thu Dec 16 14:16:01 CET 2004


Update of /cvsroot/scummvm/scummvm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22260

Modified Files:
	configure 
Log Message:
configure was using at least three different indention styles (4-tabs; 2-spaces; 4-spaces-8-tabs); tried to unify this, configure is no best viewed with tabs=4 like the rest of ScummVM

Index: configure
===================================================================
RCS file: /cvsroot/scummvm/scummvm/configure,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -d -r1.107 -r1.108
--- configure	16 Dec 2004 22:05:45 -0000	1.107
+++ configure	16 Dec 2004 22:15:32 -0000	1.108
@@ -94,7 +94,7 @@
 {
 cat <<EOF >tmp_cxx_compiler.cpp
 class Foo {
-  int a;
+	int a;
 };
 int main(int argc, char **argv)
 {
@@ -105,10 +105,10 @@
 EOF
 
[...1011 lines suppressed...]
+		INCLUDES="$INCLUDES `$_sdlconfig --cflags`"
+		LIBS="$LIBS `$_sdlconfig --libs`"
+		MODULES="$MODULES backends/sdl"
+		;;
+	x11)
+		INCLUDES="$INCLUDES -I/usr/X11R6/include"
+		LIBS="$LIBS -lpthread -lXext -lX11"
+		LDFLAGS="$LDFLAGS -L/usr/X11R6/lib -L/usr/local/lib"
+		OBJS="$OBJS backends/x11/x11.o"
+		DEFINES="$DEFINES -DX11_BACKEND"
+		MODULES="$MODULES backends/x11"
+		MODULE_DIRS="$MODULE_DIRS backends/x11"
+		;;
+	*)
+		echo "support for $_backend backend not implemented in configure script yet"
+		exit 1
+		;;
 esac
 
 echo





More information about the Scummvm-git-logs mailing list