[Python-ogre-commit] SF.net SVN: python-ogre:[670] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <mi...@us...> - 2008-07-23 10:04:31
|
Revision: 670 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=670&view=rev Author: mithro Date: 2008-07-23 10:04:31 +0000 (Wed, 23 Jul 2008) Log Message: ----------- More fixes to OgreAL. Modified Paths: -------------- trunk/python-ogre/code_generators/ogreal/generate_code.py trunk/python-ogre/debian/changelog trunk/python-ogre/debian/rules trunk/python-ogre/demos/ogreal/Demo_AL_01.py Modified: trunk/python-ogre/code_generators/ogreal/generate_code.py =================================================================== --- trunk/python-ogre/code_generators/ogreal/generate_code.py 2008-07-23 06:12:17 UTC (rev 669) +++ trunk/python-ogre/code_generators/ogreal/generate_code.py 2008-07-23 10:04:31 UTC (rev 670) @@ -107,7 +107,14 @@ context = main_ns.decl("ALCcontext_struct") context.opaque = True - + + # These symbols are missing from the lib even though they are defined in + # the header file! + main_ns.decl("alSource3i").exclude() + main_ns.decl("alSourceiv").exclude() + main_ns.decl("alGetSource3i").exclude() + main_ns.decl("alGetSourceiv").exclude() + ############################################################ ## ## And things that need to have their argument and call values fixed. @@ -304,9 +311,9 @@ ## now we need to ensure a series of headers and additional source files are ## copied to the generated directory.. -# common_utils.copyTree ( sourcePath = environment.Config.PATH_Config.PATH_OGREAL, -# destPath = environment.ogreal.generated_dir, -# recursive=False ) + common_utils.copyTree ( sourcePath = environment.Config.PATH_OGREAL, + destPath = environment.ogreal.generated_dir, + recursive=False ) if __name__ == '__main__': start_time = time.clock() Modified: trunk/python-ogre/debian/changelog =================================================================== --- trunk/python-ogre/debian/changelog 2008-07-23 06:12:17 UTC (rev 669) +++ trunk/python-ogre/debian/changelog 2008-07-23 10:04:31 UTC (rev 670) @@ -1,3 +1,13 @@ +python-ogre (0.0.0-4) unstable; urgency=low + + * Fixed ogreal to link against boost_python_index. + + -- Tim 'Mithro' Ansell <mi...@mi...> Wed, 23 Jul 2008 16:13:51 +1000 +python-ogre (0.0.0-3) unstable; urgency=low + + * Really fixed the CEGUI.loadWindowLayout method (now with defaults!). + + -- Tim 'Mithro' Ansell <mi...@mi...> Wed, 16 Jul 2008 18:19:51 +1000 python-ogre (0.0.0-2) unstable; urgency=low * Fixed the CEGUI.loadWindowLayout method. Modified: trunk/python-ogre/debian/rules =================================================================== --- trunk/python-ogre/debian/rules 2008-07-23 06:12:17 UTC (rev 669) +++ trunk/python-ogre/debian/rules 2008-07-23 10:04:31 UTC (rev 670) @@ -26,7 +26,7 @@ LD_PRELOAD='' python BuildModule.py --usesystem --failhard -g -c et LD_PRELOAD='' python BuildModule.py --usesystem --failhard -g -c plib LD_PRELOAD='' python BuildModule.py --usesystem --failhard -g -c ogreforests -# LD_PRELOAD='' python BuildModule.py --usesystem --failhard -g -c ogreal + LD_PRELOAD='' python BuildModule.py --usesystem --failhard -g -c ogreal LD_PRELOAD='' python BuildModule.py --usesystem --failhard -g -c watermesh touch $@ Modified: trunk/python-ogre/demos/ogreal/Demo_AL_01.py =================================================================== --- trunk/python-ogre/demos/ogreal/Demo_AL_01.py 2008-07-23 06:12:17 UTC (rev 669) +++ trunk/python-ogre/demos/ogreal/Demo_AL_01.py 2008-07-23 10:04:31 UTC (rev 670) @@ -135,7 +135,7 @@ OgreAL.SoundManager.getSingleton().getSound("Roar").play() - bgSound = self.soundManager.createSound("ZeroFactor", "Zero Factor - Untitled.ogg", True, True) + bgSound = self.soundManager.createSound("ZeroFactor", "6chan.ogg", True, True) node = sceneManager.getRootSceneNode().createChildSceneNode("CameraNode") This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |