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:
authorKen Hughes <khughes@pacific.edu>2006-06-05 19:52:26 +0400
committerKen Hughes <khughes@pacific.edu>2006-06-05 19:52:26 +0400
commita57bb6bee1714624fe9391c3fe99650a1ef08f79 (patch)
tree934e018a0371784b0d4c12ee4fedcc2f0cad7272 /intern
parent10bc1926040f014f38d0b8c6b9687e0b772928f8 (diff)
Bugfix #4081: support for OpenBSD platform for scons. Big thanks to Nathan Houghton for this contribution.
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 5a31f45aa89..2c7b29fb44d 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -22,6 +22,10 @@ elif window_system == 'darwin':
for f in pf:
sources.remove('intern' + os.sep + f + 'Win32.cpp')
sources.remove('intern' + os.sep + f + 'X11.cpp')
+elif window_system == 'openbsd3':
+ 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()