Revision: 671
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=671&view=rev
Author: mithro
Date: 2008-07-23 11:39:02 +0000 (Wed, 23 Jul 2008)
Log Message:
-----------
Fixed some packages missing boost_python_index.
Fixed some excess linking for ogreal.
Modified Paths:
--------------
trunk/python-ogre/environment.py
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2008-07-23 10:04:31 UTC (rev 670)
+++ trunk/python-ogre/environment.py 2008-07-23 11:39:02 UTC (rev 671)
@@ -945,7 +945,7 @@
Config.PATH_LIB_Ogre_OgreMain
]
CheckIncludes=[]
- libs=[ boost.lib, 'OgreMain' ]
+ libs=[ boost.lib, boost_python_index.lib, 'OgreMain' ]
ModuleName="caelum"
class ogreode:
@@ -1197,7 +1197,7 @@
if os.name == "nt":
libs = [ boost.lib, 'winmm', 'User32','wsock32', 'opengl32.lib','glu32.lib' ]
else:
- libs = [ boost.lib ] # Note sure what linux libraries are needed
+ libs = [ boost.lib, "GL" ] # Note sure what linux libraries are needed
class physx:
active = True
@@ -1320,9 +1320,9 @@
[0, "aclocal\n./autogen.sh", os.path.join(os.getcwd(),"openal-0.0.8")],
[0, "./configure --prefix=%s\nmake\nmake install" % PREFIX, os.path.join(os.getcwd(), "openal-0.0.8")]
]
- libs=[boost.lib, boost_python_index.lib, 'OgreMain',
- 'ogg',
- 'vorbis','vorbisfile','vorbisenc',
+ libs=[boost.lib, boost_python_index.lib, 'OgreMain', 'vorbisfile',
+ #'ogg',
+ #'vorbis','vorbisfile','vorbisenc',
'openal'] ## 'OgreAL' -- going to compile OgreAL ourselves
ModuleName = 'OgreAL'
@@ -1386,7 +1386,7 @@
version= "2.2"
name='et'
parent = "ogre/addons"
- libs=[ boost.lib, 'OgreMain' ]
+ libs=[ boost.lib, boost_python_index.lib, 'OgreMain' ]
lib_dirs = [ Config.PATH_LIB_Boost,
Config.PATH_LIB_Ogre_OgreMain
]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|