[Python-ogre-commit] SF.net SVN: python-ogre:[682] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2008-08-01 15:46:39
|
Revision: 682 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=682&view=rev Author: andy_miller Date: 2008-08-01 15:46:47 +0000 (Fri, 01 Aug 2008) Log Message: ----------- Minor changes to get OgreAL and ET compiling again on Windows Modified Paths: -------------- trunk/python-ogre/PythonOgreConfig_nt.py trunk/python-ogre/demos/ogre/tests/Test_Camera.py trunk/python-ogre/demos/plugins.cfg trunk/python-ogre/environment.py Modified: trunk/python-ogre/PythonOgreConfig_nt.py =================================================================== --- trunk/python-ogre/PythonOgreConfig_nt.py 2008-08-01 03:24:34 UTC (rev 681) +++ trunk/python-ogre/PythonOgreConfig_nt.py 2008-08-01 15:46:47 UTC (rev 682) @@ -107,7 +107,7 @@ PATH_LIB_OgreOdePrefab = os.path.join( PATH_OgreOde, 'prefab/lib/Release' ) PATH_LIB_OgreOdeLoader = os.path.join( PATH_OgreOde, 'loader/lib/Release' ) -PATH_LIB_OgreAL = os.path.join( PATH_OGREAL ) # , 'lib/Release' ) +PATH_LIB_OgreAL = os.path.join( PATH_OGREAL ) ##, 'lib/Release' ) PATH_LIB_betagui = PATH_betagui PATH_LIB_quickgui = PATH_quickgui PATH_LIB_NxOgre= os.path.join(PATH_NxOgre, 'lib') Modified: trunk/python-ogre/demos/ogre/tests/Test_Camera.py =================================================================== --- trunk/python-ogre/demos/ogre/tests/Test_Camera.py 2008-08-01 03:24:34 UTC (rev 681) +++ trunk/python-ogre/demos/ogre/tests/Test_Camera.py 2008-08-01 15:46:47 UTC (rev 682) @@ -105,8 +105,13 @@ print v + for r in self.root.getAvailableRenderers(): + print "Renderer: ",r.getName() + cap = r.getCapabilities() + if cap: ## Note the OpenGL doesn't seem to have any capabilities?? + print "Device Name: ", cap.DeviceName + print "Driver Version/release: ", cap.DriverVersion.build, cap.DriverVersion.release - sys.exit() Modified: trunk/python-ogre/demos/plugins.cfg =================================================================== --- trunk/python-ogre/demos/plugins.cfg 2008-08-01 03:24:34 UTC (rev 681) +++ trunk/python-ogre/demos/plugins.cfg 2008-08-01 15:46:47 UTC (rev 682) @@ -10,9 +10,9 @@ Plugin=Plugin_BSPSceneManager.dll Plugin=Plugin_OctreeSceneManager.dll Plugin=Plugin_CgProgramManager.dll -Plugin=Plugin_PCZSceneManager.dll -Plugin=Plugin_OctreeZone.dll -Plugin=Plugin_OctreeSceneManager.dll +#Plugin=Plugin_PCZSceneManager.dll +#Plugin=Plugin_OctreeZone.dll +#Plugin=Plugin_OctreeSceneManager.dll ## Modified: trunk/python-ogre/environment.py =================================================================== --- trunk/python-ogre/environment.py 2008-08-01 03:24:34 UTC (rev 681) +++ trunk/python-ogre/environment.py 2008-08-01 15:46:47 UTC (rev 682) @@ -871,7 +871,8 @@ CCFLAGS = ' -DBOOST_PYTHON_MAX_ARITY=19' ModuleName = 'CEGUI' CheckIncludes = ['boost/python.hpp', 'Ogre.h', 'CEGUI.h', 'OgreCEGUIRenderer.h'] - LINKFLAGS = "-l%s" % boost_python_index.lib + if isLinux(): + LINKFLAGS = "-l%s" % boost_python_index.lib class ode: @@ -1297,7 +1298,7 @@ libs=[boost.lib, 'OgreMain', 'ogg_static', 'vorbis_static','vorbisfile_static','vorbisenc_static', - 'OpenAL32', 'EFX-Util', 'OgreAL'] # -- going to compile OgreAL ourselves + 'OpenAL32', 'EFX-Util'] # -- going to compile OgreAL ourselves source = [ ["wget", "http://connect.creativelabs.com/openal/Downloads/OpenAL11CoreSDK.zip",downloadPath], ["wget", "http://downloads.xiph.org/releases/ogg/libogg-1.1.3.zip",downloadPath], This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |