[Python-ogre-commit] SF.net SVN: python-ogre: [527] trunk/python-ogre
Brought to you by:
andy_miller,
roman_yakovenko
From: <and...@us...> - 2007-12-31 07:21:37
|
Revision: 527 http://python-ogre.svn.sourceforge.net/python-ogre/?rev=527&view=rev Author: andy_miller Date: 2007-12-30 23:21:40 -0800 (Sun, 30 Dec 2007) Log Message: ----------- Mac OSX fixes 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 2007-12-31 04:21:49 UTC (rev 526) +++ trunk/python-ogre/PythonOgreConfig_posix.py 2007-12-31 07:21:40 UTC (rev 527) @@ -27,8 +27,9 @@ # and the Py++ directory as sometimes we need access to the code repository there pyplusplus_install_dir = os.path.join(BASE_DIR,'pygccxml') -SDK = True -SDK = False +SDK = False +if os.sys.platform == 'darwin': # we use the pre built sdk for OSX + SDK = True # # ## Parent directories of the libraries PATH_THIRDPARTY = os.path.join(module_dir, 'ThirdParty' ) Modified: trunk/python-ogre/environment.py =================================================================== --- trunk/python-ogre/environment.py 2007-12-31 04:21:49 UTC (rev 526) +++ trunk/python-ogre/environment.py 2007-12-31 07:21:40 UTC (rev 527) @@ -211,7 +211,7 @@ if isMac(): base = 'newton' source = [ - [wget, "http://www.newtondynamics.com/downloads/newtonMac-1.53.zip", donwloadPath] + [wget, "http://www.newtondynamics.com/downloads/newtonMac-1.53.zip", downloadPath] ] buildCmds = [ @@ -219,7 +219,7 @@ [0,"patch -s -i ./python-ogre/patch/Newton.patch -p0 ", ''], [0, "cp newtonSDK/sdk/Newton.h %s/include" % PREFIX, ''], [0, "cp newtonSDK/sdk/*.a %s/lib" % PREFIX, ''], - [0, "cp newtonSDK/sdk/*.a ogreaddons/ogrenewt" % PREFIX, ''] + [0, "cp newtonSDK/sdk/*.a ogreaddons/ogrenewt" , ''] ] class pygccxml: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |