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 /extern/qhull
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 'extern/qhull')
-rw-r--r--extern/qhull/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/extern/qhull/SConscript b/extern/qhull/SConscript
index 6b21d3694e0..d391d445508 100644
--- a/extern/qhull/SConscript
+++ b/extern/qhull/SConscript
@@ -11,8 +11,8 @@ elif env['OURPLATFORM']=='win32-vc':
cflags += ['/O2']
elif env['OURPLATFORM']=='win32-mingw':
cflags += ['-O2']
-elif sys.platform=='sunos':
- cflags += ['Xc', '-v', '-fast']
+elif sys.platform=='sunos5':
+ cflags += ['-O2', '-ansi']
elif sys.platform=='darwin':
cflags += ['-O2', '-pipe', '-fPIC', '-funsigned-char', '-ffast-math', '-mpowerpc' , '-mtune=G4']