[Opal-commits] opal SConstruct,1.11,1.12 changelog.txt,1.29,1.30 readme.txt,1.41,1.42 todo.txt,1.82,
Status: Inactive
Brought to you by:
tylerstreeter
|
From: tylerstreeter <tyl...@us...> - 2005-06-24 19:05:02
|
Update of /cvsroot/opal/opal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29465 Modified Files: SConstruct changelog.txt readme.txt todo.txt win32BinaryReadme.txt Log Message: Removed the OPAL_USE_MESH compile-time flag because it isn't needed. (It was originally intended for IRIX usage because ODE's trimesh support doesn't compile on IRIX with certain versions of the MipsPro compiler. However, the ODE trimesh function calls can still be used without trimeshes compiled into ODE; they just don't do anything.) Index: SConstruct =================================================================== RCS file: /cvsroot/opal/opal/SConstruct,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** SConstruct 24 Jun 2005 17:50:47 -0000 1.11 --- SConstruct 24 Jun 2005 19:04:18 -0000 1.12 *************** *** 72,76 **** opts.AddOptions( BoolOption('debug', 'Build in debug mode', False), - BoolOption('mesh', 'Build with Mesh Shape functionality', True), BoolOption('double', 'Build with reals set to double instead of float', False), PathOption('extra_include_path', 'Additional include directory', '.'), --- 72,75 ---- *************** *** 104,111 **** buildDir = 'build/' + env['PLATFORM'] + '/release' - # Add mesh support if desired. - if env['mesh'] == True: - env.Append(CPPDEFINES = ['OPAL_USE_MESH']) - # Add double floating point precision support if desired. if env['double'] == True: --- 103,106 ---- *************** *** 124,128 **** '\nExample 1 (build debug library with ODE support): scons ODE debug=true' + '\nExample 2 (build with ODE support and install): scons ODE install prefix=/path/to/install/dir' + ! '\nExample 3 (build with ODE support and specify header/lib paths): scons ODE extra_include_path=/path/to/includes extra_lib_path=/path/to/libs' + '\n') --- 119,123 ---- '\nExample 1 (build debug library with ODE support): scons ODE debug=true' + '\nExample 2 (build with ODE support and install): scons ODE install prefix=/path/to/install/dir' + ! '\nExample 3 (build with ODE support and specify header/lib paths): scons ODE extra_include_path=/path/to/include extra_lib_path=/path/to/lib' + '\n') Index: changelog.txt =================================================================== RCS file: /cvsroot/opal/opal/changelog.txt,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** changelog.txt 24 Jun 2005 18:46:27 -0000 1.29 --- changelog.txt 24 Jun 2005 19:04:20 -0000 1.30 *************** *** 15,18 **** --- 15,20 ---- ------------------------------------------ + * 6-24-05: Removed the OPAL_USE_MESH compile-time flag because it isn't needed. (It was originally intended for IRIX usage because ODE's trimesh support doesn't compile on IRIX with certain versions of the MipsPro compiler. However, the ODE trimesh function calls can still be used without trimeshes compiled into ODE; they just don't do anything.) (Tyler Streeter) + * 6-24-05: Fixed bug where collisions between two static Solids (at least one of them using a CollisionEventHandler) caused a crash in an ODE function call. Thanks to EarthquakeProof in the forum for catching this. (Tyler Streeter) Index: todo.txt =================================================================== RCS file: /cvsroot/opal/opal/todo.txt,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** todo.txt 24 Jun 2005 18:46:28 -0000 1.82 --- todo.txt 24 Jun 2005 19:04:20 -0000 1.83 *************** *** 2,9 **** ================= - * remove OPAL_USE_MESH - - * add simple sample app - * keep track of solids that have moved; allows users to only update visuals when necessary - store a 'isMoving' variable --- 2,5 ---- Index: readme.txt =================================================================== RCS file: /cvsroot/opal/opal/readme.txt,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** readme.txt 24 Jun 2005 17:50:47 -0000 1.41 --- readme.txt 24 Jun 2005 19:04:20 -0000 1.42 *************** *** 41,45 **** You can specify additional include and library paths like this: ! scons ODE extra_include_path=/path/to/includes extra_lib_path=/path/to/libs Finally, to install the OPAL headers and library, do this: --- 41,45 ---- You can specify additional include and library paths like this: ! scons ODE extra_include_path=/path/to/include extra_lib_path=/path/to/lib Finally, to install the OPAL headers and library, do this: Index: win32BinaryReadme.txt =================================================================== RCS file: /cvsroot/opal/opal/win32BinaryReadme.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** win32BinaryReadme.txt 24 Jun 2005 17:50:47 -0000 1.3 --- win32BinaryReadme.txt 24 Jun 2005 19:04:20 -0000 1.4 *************** *** 15,21 **** win32BinaryReadme.txt - you're reading it ! * The OPAL libraries have been built with the following options: double=false ! MESH=true ------------------------------------ --- 15,21 ---- win32BinaryReadme.txt - you're reading it ! * The OPAL debug and release libraries have been built with the following options: double=false ! ------------------------------------ |