Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2006-08-03 06:46:37 +0400
committerKent Mein <mein@cs.umn.edu>2006-08-03 06:46:37 +0400
commit6c8986838638eed9afdc13c03515ccb7b3d1aca6 (patch)
tree9b5eda9f1b49b7773533cad0a4f067df67849b67 /tools/Blender.py
parent1d05319e29420fe8466e9f1b2d5a900161269e97 (diff)
Adds scons support for SunOS...
(I have one small problem with linking python's static library but other than that this should work) Kent
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 203635e14f6..8c334a70536 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -380,6 +380,9 @@ class BlenderEnvironment(SConsEnvironment):
if lenv['OURPLATFORM']=='linux2':
lenv.Append(LINKFLAGS = lenv['PLATFORM_LINKFLAGS'])
lenv.Append(LINKFLAGS = lenv['BF_PYTHON_LINKFLAGS'])
+ if lenv['OURPLATFORM']=='sunos5':
+ lenv.Append(LINKFLAGS = lenv['PLATFORM_LINKFLAGS'])
+ lenv.Append(LINKFLAGS = lenv['BF_PYTHON_LINKFLAGS'])
if lenv['OURPLATFORM']=='darwin':
lenv.Append(LINKFLAGS = lenv['PLATFORM_LINKFLAGS'])
lenv.Append(LINKFLAGS = lenv['BF_PYTHON_LINKFLAGS'])