mirror of
https://github.com/reactos/ninja.git
synced 2024-11-23 11:49:45 +00:00
commit
4daf9c9e83
@ -159,7 +159,7 @@ libs = []
|
||||
if platform.is_mingw():
|
||||
cflags.remove('-fvisibility=hidden');
|
||||
ldflags.append('-static')
|
||||
elif platform.is_sunos5():
|
||||
elif platform.is_solaris():
|
||||
cflags.remove('-fvisibility=hidden')
|
||||
elif platform.is_msvc():
|
||||
pass
|
||||
|
@ -35,7 +35,7 @@ class Platform(object):
|
||||
self._platform = 'freebsd'
|
||||
elif self._platform.startswith('openbsd'):
|
||||
self._platform = 'openbsd'
|
||||
elif self._platform.startswith('solaris'):
|
||||
elif self._platform.startswith('solaris') or self._platform == 'sunos5':
|
||||
self._platform = 'solaris'
|
||||
elif self._platform.startswith('mingw'):
|
||||
self._platform = 'mingw'
|
||||
@ -78,9 +78,6 @@ class Platform(object):
|
||||
def is_openbsd(self):
|
||||
return self._platform == 'openbsd'
|
||||
|
||||
def is_sunos5(self):
|
||||
return self._platform == 'sunos5'
|
||||
|
||||
def is_bitrig(self):
|
||||
return self._platform == 'bitrig'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user