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:
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 /extern/solid
parent10bc1926040f014f38d0b8c6b9687e0b772928f8 (diff)
Bugfix #4081: support for OpenBSD platform for scons. Big thanks to Nathan Houghton for this contribution.
Diffstat (limited to 'extern/solid')
-rw-r--r--extern/solid/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/solid/SConscript b/extern/solid/SConscript
index 00970f455e4..379bfbd3645 100644
--- a/extern/solid/SConscript
+++ b/extern/solid/SConscript
@@ -12,7 +12,7 @@ if env['OURPLATFORM']=='win32-vc':
elif env['OURPLATFORM']=='win32-mingw':
defs += ' NDEBUG'
cflags += ['-O2']
-elif sys.platform=='linux2' or sys.platform=='linux-i386' or sys.platform=='freebsd4' or sys.platform=='freebsd5':
+elif sys.platform=='linux2' or sys.platform=='linux-i386' or sys.platform=='freebsd4' or sys.platform=='freebsd5' or sys.platform=='openbsd3':
defs += ' NDEBUG'
cflags += ['-O2']
elif sys.platform=='darwin' :