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
path: root/intern
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 /intern
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 'intern')
-rw-r--r--intern/ghost/SConscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript
index 2c7b29fb44d..d143f16fc0c 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -26,6 +26,10 @@ elif window_system == 'openbsd3':
for f in pf:
sources.remove('intern' + os.sep + f + 'Win32.cpp')
sources.remove('intern' + os.sep + f + 'Carbon.cpp')
+elif window_system == 'sunos5':
+ for f in pf:
+ sources.remove('intern' + os.sep + f + 'Win32.cpp')
+ sources.remove('intern' + os.sep + f + 'Carbon.cpp')
else:
print "Unknown window system specified."
Exit()