From: <mk...@us...> - 2003-10-20 07:00:47
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim In directory sc8-pr-cvs1:/tmp/cvs-serv1968 Modified Files: CHANGES.current configure.in Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -d -r1.72 -r1.73 *** CHANGES.current 20 Oct 2003 05:16:13 -0000 1.72 --- CHANGES.current 20 Oct 2003 06:52:12 -0000 1.73 *************** *** 2,5 **** --- 2,12 ---- =========================== 2003-10-19: onsight + Updated configure script to check for osg 0.9.6. Version + 0.9.4 can still be used, if necessary. To do so, change + configure.in to check for 0.9.4, run autoconf, then + ./configure. Finally, edit Include/CSPSim.h and uncomment + the #define CSP_OSG_094 line. + + 2003-10-19: onsight Updated the xml files to remove the 'static' attribute (now set in the class definition), and convert the engine thrust Index: configure.in =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/configure.in,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** configure.in 20 Oct 2003 00:23:22 -0000 1.14 --- configure.in 20 Oct 2003 06:52:12 -0000 1.15 *************** *** 55,76 **** dnl check for OpenSceneGraph ! CSP_OSG_CONFIG(osg, 0.9.4, [OpenSceneGraph]) ! # osg 0.9.3 segfaults when any of these libs are linked against a ! # minimal version test script. so, no version check for now, just ! # see if the libs exist. hopefully the next osg release will fix ! # this! ! #AC_CHECK_LIB(osgGLUT, osgGLUTGetVersion, , ! # [AC_MSG_ERROR(OpenSceneGraph utility library not found. See http://www.openscenegraph.org)],) ! #AC_CHECK_LIB(osgUtil, osgUtilGetVersion, , ! # [AC_MSG_ERROR(OpenSceneGraph utility library not found. See http://www.openscenegraph.org)],) ! #AC_CHECK_LIB(osgText, osgTextGetVersion, , ! # [AC_MSG_ERROR(OpenSceneGraph utility library not found. See http://www.openscenegraph.org)],) ! #AC_CHECK_LIB(osgParticle, osgParticleGetVersion, , ! # [AC_MSG_ERROR(OpenSceneGraph utility library not found. See http://www.openscenegraph.org)],) ! # GLUT is no longer needed. ! #CSP_OSG_CONFIG(osgGLUT, 0.9.3, [OpenSceneGraph GLUT library]) ! CSP_OSG_CONFIG(osgUtil, 0.9.4, [OpenSceneGraph Util library]) ! CSP_OSG_CONFIG(osgText, 0.9.4, [OpenSceneGraph Text library]) ! CSP_OSG_CONFIG(osgParticle, 0.9.4, [OpenSceneGraph Particle library]) dnl check for libSigC++ type-safe signal libraryy --- 55,62 ---- dnl check for OpenSceneGraph ! CSP_OSG_CONFIG(osg, 0.9.6, [OpenSceneGraph]) ! CSP_OSG_CONFIG(osgUtil, 0.9.6, [OpenSceneGraph Util library]) ! CSP_OSG_CONFIG(osgText, 0.9.6, [OpenSceneGraph Text library]) ! CSP_OSG_CONFIG(osgParticle, 0.9.6, [OpenSceneGraph Particle library]) dnl check for libSigC++ type-safe signal libraryy |