[Python-ogre-commit] SF.net SVN: python-ogre: [554] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
|
From: <and...@us...> - 2008-01-18 05:50:46
|
Revision: 554
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=554&view=rev
Author: andy_miller
Date: 2008-01-17 21:50:51 -0800 (Thu, 17 Jan 2008)
Log Message:
-----------
Fix for OgreNewt building -- the boost include dir name was wrong -- also change to run gccxml from the installed directory
Modified Paths:
--------------
trunk/python-ogre/PythonOgreConfig_posix.py
trunk/python-ogre/environment.py
Modified: trunk/python-ogre/PythonOgreConfig_posix.py
===================================================================
--- trunk/python-ogre/PythonOgreConfig_posix.py 2008-01-16 13:00:40 UTC (rev 553)
+++ trunk/python-ogre/PythonOgreConfig_posix.py 2008-01-18 05:50:51 UTC (rev 554)
@@ -27,6 +27,7 @@
# We need to know where to find gccxml......
gccxml_bin = os.path.join(BASE_DIR,'gccxml-build/bin')
+gccxml_bin = os.path.join(ROOT_DIR,'bin')
# and the Py++ directory as sometimes we need access to the code repository there
pyplusplus_install_dir = os.path.join(BASE_DIR,'pygccxml')
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2008-01-16 13:00:40 UTC (rev 553)
+++ trunk/python-ogre/environment.py 2008-01-18 05:50:51 UTC (rev 554)
@@ -624,11 +624,11 @@
]
baseDir = os.path.join(os.getcwd(), base )
buildCmds = [
- [0, "patch -s -N -i ../../python-ogre/patch/ogrenewt.patch -p0", baseDir],
- [0, "cp SConscript OgreNewt_Main", baseDir],
+ #[0, "patch -s -N -i ../../python-ogre/patch/ogrenewt.patch -p0", baseDir],
+ #[0, "cp SConscript OgreNewt_Main", baseDir],
#[0, "rm SConscript", baseDir],
[0, "rm -r ./OgreNewt_Main/inc/boost", baseDir],
- [0, "scons prefix=%s boost=%s/include/%s install" % (PREFIX, PREFIX, boost.base), baseDir],
+ [0, "scons prefix=%s boost=%s/include/boost-1_34_1" % (PREFIX, PREFIX), baseDir], ##WARNING -- boost include dir name is different than build name (dash not underscore)
]
include_dirs = [Config.PATH_Boost
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|