[Python-ogre-commit] SF.net SVN: python-ogre: [392] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2007-09-23 08:38:08
|
Revision: 392 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=392&view=rev Author: andy_miller Date: 2007-09-23 01:38:07 -0700 (Sun, 23 Sep 2007) Log Message: ----------- More Linux Updates - OgreOde fixed, Newline to Quickqui file to remove warning Modified Paths: -------------- trunk/python-ogre/ThirdParty/quickgui/QuickGUIExportDLL.h trunk/python-ogre/code_generators/ogreode/generate_code.py trunk/python-ogre/environment.py Modified: trunk/python-ogre/ThirdParty/quickgui/QuickGUIExportDLL.h =================================================================== --- trunk/python-ogre/ThirdParty/quickgui/QuickGUIExportDLL.h 2007-09-23 07:22:47 UTC (rev 391) +++ trunk/python-ogre/ThirdParty/quickgui/QuickGUIExportDLL.h 2007-09-23 08:38:07 UTC (rev 392) @@ -13,4 +13,5 @@ #endif #endif -#endif \ No newline at end of file +#endif + Modified: trunk/python-ogre/code_generators/ogreode/generate_code.py =================================================================== --- trunk/python-ogre/code_generators/ogreode/generate_code.py 2007-09-23 07:22:47 UTC (rev 391) +++ trunk/python-ogre/code_generators/ogreode/generate_code.py 2007-09-23 08:38:07 UTC (rev 392) @@ -239,8 +239,8 @@ for cls in mb.global_ns.namespace(ns).classes(): cls.add_properties( recognizer=ogre_properties.ogre_property_recognizer_t() ) - common_utils.add_constants( mb, { 'ogreode_version' : '"%s"' % environment.ogreode.version - , 'python_version' : '"%s"' % sys.version } ) + common_utils.add_constants( mb, { 'ogreode_version' : '"%s"' % environment.ogreode.version.replace("\n", "\\\n") + , 'python_version' : '"%s"' % sys.version.replace("\n", "\\\n" ) } ) for ns in namespaces: for cls in mb.global_ns.namespace(ns).classes(): process_warnings.go ( cls ) Modified: trunk/python-ogre/environment.py =================================================================== --- trunk/python-ogre/environment.py 2007-09-23 07:22:47 UTC (rev 391) +++ trunk/python-ogre/environment.py 2007-09-23 08:38:07 UTC (rev 392) @@ -246,7 +246,7 @@ active=True version = "1.0" parent = "ogre/physics" - libs = ['newton', Config.LIB_Boost, 'OgreNewt_Main', 'OgreMain'] + libs = ['Newton', Config.LIB_Boost, 'OgreNewt_Main', 'OgreMain'] include_dirs = [Config.PATH_Boost , Config.PATH_Newton # only one path for Newton , Config.PATH_INCLUDE_Ogre This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |