[Opal-commits] opal/samples/playpen SConstruct,1.1,1.2 main.cpp,1.11,1.12
Status: Inactive
Brought to you by:
tylerstreeter
|
From: tylerstreeter <tyl...@us...> - 2005-04-19 14:02:45
|
Update of /cvsroot/opal/opal/samples/playpen In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7749/samples/playpen Modified Files: SConstruct main.cpp Log Message: Made playpen app work on Linux. Index: SConstruct =================================================================== RCS file: /cvsroot/opal/opal/samples/playpen/SConstruct,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SConstruct 18 Apr 2005 22:21:02 -0000 1.1 --- SConstruct 19 Apr 2005 14:02:26 -0000 1.2 *************** *** 5,22 **** """) - env = Environment( ENV = os.environ, ! CXX = [''], ! CCFLAGS = [''], ! CXXFLAGS = [''], ! CPPPATH = [''], ! LINK = [''], ! LINKFLAGS = [''], ! AR = [''], ! ARFLAGS = [''], ! LIBPATH = [''], ! SHLIBSUFFIX='.so', ! LIBS = [''] ) --- 5,21 ---- """) env = Environment( ENV = os.environ, ! # CXX = [''], ! # CCFLAGS = [''], ! CXXFLAGS = ['-DGCC_3_1', '-DEXT_HASH'], ! # CPPPATH = [''], ! # LINK = [''], ! # LINKFLAGS = ['pkg-config --libs OGRE'], ! # AR = [''], ! # ARFLAGS = [''], ! # LIBPATH = [''], ! # SHLIBSUFFIX='.so', ! LIBS = ['opal-ode', 'OgreMain'] ) Index: main.cpp =================================================================== RCS file: /cvsroot/opal/opal/samples/playpen/main.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** main.cpp 18 Apr 2005 22:21:02 -0000 1.11 --- main.cpp 19 Apr 2005 14:02:27 -0000 1.12 *************** *** 688,692 **** { opal::Matrix44r wallBaseTransform = baseTransform; ! opal::real length = 0; switch(wall) --- 688,692 ---- { opal::Matrix44r wallBaseTransform = baseTransform; ! unsigned int length = 0; switch(wall) |