Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8820a53 commit 3c04494Copy full SHA for 3c04494
1 file changed
setup.py
@@ -118,6 +118,8 @@ def get_platform (self):
118
platform = sys.platform
119
if platform[:6] =='cygwin':
120
platform = 'cygwin'
121
+ elif platform[:4] =='beos':
122
+ platform = 'beos'
123
124
return platform
125
@@ -139,7 +141,7 @@ def detect_modules(self):
139
141
140
142
# Check for MacOS X, which doesn't need libm.a at all
143
math_libs = ['m']
- if platform == 'Darwin1.2':
144
+ if platform in ['Darwin1.2', 'beos']:
145
math_libs = []
146
147
# XXX Omitted modules: gl, pure, dl, SGI-specific modules
0 commit comments