Revision: 722
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=722&view=rev
Author: mithro
Date: 2008-09-02 08:21:07 +0000 (Tue, 02 Sep 2008)
Log Message:
-----------
On Linux use Boost 1.34.0 on the stable version.
Modified Paths:
--------------
trunk/python-ogre/environment.py
Modified: trunk/python-ogre/environment.py
===================================================================
--- trunk/python-ogre/environment.py 2008-09-02 07:53:57 UTC (rev 721)
+++ trunk/python-ogre/environment.py 2008-09-02 08:21:07 UTC (rev 722)
@@ -453,13 +453,19 @@
pythonModule = False
ModuleName = ""
- if _STABLE:
- base = 'boost_1_36_0'
- lib= 'boost_python-vc90-mt-1_36'
- else:
- base = 'boost_1_37'
- lib = 'boost_python-vc90-mt-1_37'
-
+ if isWindows():
+ if _STABLE:
+ base = 'boost_1_36_0'
+ lib= 'boost_python-vc90-mt-1_36'
+ else:
+ base = 'boost_1_37'
+ lib = 'boost_python-vc90-mt-1_37'
+ else:
+ if _STABLE:
+ base = 'boost_1_34_0'
+ else:
+ base = 'boost_1_37'
+
if isLinux() or isMac():
bjambase = 'boost-jam-3.1.16'
if isMac():
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|