From: <sv...@ww...> - 2005-12-04 09:45:41
|
Author: mkrose Date: 2005-12-04 01:45:13 -0800 (Sun, 04 Dec 2005) New Revision: 1711 Modified: trunk/CSP/csp/cspsim/SConscript Log: Add osgDB and OpenThreads to the scons config and link. They were automatically brought in by other lib dependencies, but this isn't necessarily true on other platforms. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1711 Modified: trunk/CSP/csp/cspsim/SConscript =================================================================== --- trunk/CSP/csp/cspsim/SConscript 2005-12-04 09:08:29 UTC (rev 1710) +++ trunk/CSP/csp/cspsim/SConscript 2005-12-04 09:45:13 UTC (rev 1711) @@ -25,9 +25,11 @@ valid = conf.CheckLib('SDL_image', 'IMG_Load') and valid valid = conf.CheckOSGVersion('osg', '0.9.6') and valid valid = conf.CheckOSGVersion('osgUtil', '0.9.6') and valid + valid = conf.CheckOSGVersion('osgDB', '0.9.6') and valid valid = conf.CheckOSGVersion('osgText', '0.9.6') and valid valid = conf.CheckOSGVersion('osgParticle', '0.9.6') and valid valid = conf.CheckLib('osgFX') and valid # doesn't have a GetVersion function + valid = conf.CheckLib('OpenThreads') and valid # doesn't have a GetVersion function valid = conf.CheckCommandVersion('sdl', 'sdl-config --version', '1.2.5') and valid if not valid: print 'Missing dependencies; see http://csp.sf.net/wiki/Current_build_dependencies for more information.' |