|
Revision 580, 426 bytes
(checked in by vossg, 2 years ago)
|
fixed : removed systemlib dependency
strange crash if canceling already finished threads
still only safe if finished threads are joined
unjoined threads might crash on BaseThread? object destruction
need to look into this a litte bit longer
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
if option_pass: |
|---|
| 4 |
print "Processing option pass" |
|---|
| 5 |
else: |
|---|
| 6 |
library = "OSGBase" |
|---|
| 7 |
osg_dep_libs = [] |
|---|
| 8 |
osg_test_libs = [] |
|---|
| 9 |
if "win32" == platform: |
|---|
| 10 |
libs = ["opengl32","glu32","gdi32","user32", "kernel32", "winmm", |
|---|
| 11 |
"wsock32", "oldnames"] |
|---|
| 12 |
cpppath = [] |
|---|
| 13 |
elif "darwin" == platform: |
|---|
| 14 |
libs = [] |
|---|
| 15 |
cpppath = [] |
|---|
| 16 |
else: |
|---|
| 17 |
libs = ["GL","GLU","pthread","dl","m"] |
|---|
| 18 |
cpppath = [] |
|---|