[Python-ogre-commit] SF.net SVN: python-ogre: [533] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2008-01-08 03:38:07
|
Revision: 533 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=533&view=rev Author: andy_miller Date: 2008-01-07 19:38:13 -0800 (Mon, 07 Jan 2008) Log Message: ----------- Added --without-icu to the boost configure to fix build issues on some systems Modified Paths: -------------- trunk/python-ogre/demos/ogre/plugins.cfg trunk/python-ogre/environment.py Modified: trunk/python-ogre/demos/ogre/plugins.cfg =================================================================== --- trunk/python-ogre/demos/ogre/plugins.cfg 2008-01-08 02:45:30 UTC (rev 532) +++ trunk/python-ogre/demos/ogre/plugins.cfg 2008-01-08 03:38:13 UTC (rev 533) @@ -2,7 +2,7 @@ ## Use this for Windows # Define plugin folder -#PluginFolder=/Users/andy/development/python-ogre/demos/ogre/ +PluginFolder=/home/andy/development/root/usr/lib/OGRE #Plugin=RenderSystem_GL.dll #Plugin=RenderSystem_Direct3D9.dll #Plugin=Plugin_ParticleFX.dll @@ -13,7 +13,7 @@ ## ## NOTE use this for MacOS or Linux Plugin=RenderSystem_GL -# Plugin=Plugin_ParticleFX -# Plugin=Plugin_BSPSceneManager -# Plugin=Plugin_OctreeSceneManager -## Plugin=Plugin_CgProgramManager + Plugin=Plugin_ParticleFX + Plugin=Plugin_BSPSceneManager + Plugin=Plugin_OctreeSceneManager + Plugin=Plugin_CgProgramManager Modified: trunk/python-ogre/environment.py =================================================================== --- trunk/python-ogre/environment.py 2008-01-08 02:45:30 UTC (rev 532) +++ trunk/python-ogre/environment.py 2008-01-08 03:38:13 UTC (rev 533) @@ -399,7 +399,7 @@ [0,cp + ' -R '+os.path.join('python-ogre','boost','*') +' ' + base , ''], # need to overwrite the boost with our files [0, sed_ + " 's/BJAM_CONFIG=\"\"/BJAM_CONFIG=release/' boost_1_34_1/configure", '' ], [0, sed_ + " s/'BOOST_PYTHON_MAX_ARITY 15'/'BOOST_PYTHON_MAX_ARITY 19'/ boost_1_34_1/boost/python/detail/preprocessor.hpp", ''], - [0,"./configure --with-libraries=python --prefix=%s" % PREFIX, os.path.join(os.getcwd(), base )], + [0,"./configure --with-libraries=python --prefix=%s --without-icu" % PREFIX, os.path.join(os.getcwd(), base )], [0,'make', os.path.join(os.getcwd(), base )], [0,'make install', os.path.join(os.getcwd(), base )], ] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |