Fix building on Solaris.
authorNico Weber <nicolasweber@gmx.de>
Sat, 1 Nov 2014 19:20:42 +0000 (12:20 -0700)
committerNico Weber <nicolasweber@gmx.de>
Sat, 1 Nov 2014 19:20:42 +0000 (12:20 -0700)
"SunOS" and "Solaris" are the same thing these days, so make them go
down the same code paths. In particular, the browse feature was omitted
on solaris but not sunos5, causing trouble for some folks (see #838).

configure.py
platform_helper.py

index 01fd301..70c4be5 100755 (executable)
@@ -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
index eab8262..035a671 100644 (file)
@@ -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'