Mesa (master): scons: Add default libraries to Solaris build.

Brian Paul brianp at kemper.freedesktop.org
Fri Aug 31 14:25:18 UTC 2012


Module: Mesa
Branch: master
Commit: c57fb034b19156e06e2ec25d9b06a0e174d861c9
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c57fb034b19156e06e2ec25d9b06a0e174d861c9

Author: Vinson Lee <vlee at freedesktop.org>
Date:   Wed Aug 29 23:16:44 2012 -0700

scons: Add default libraries to Solaris build.

Fixes SCons build on Solaris.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=54293
Signed-off-by: Vinson Lee <vlee at freedesktop.org>
Signed-off-by: Brian Paul <brianp at vmware.com>

---

 scons/gallium.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/scons/gallium.py b/scons/gallium.py
index 8fc17b3..dfed20f 100755
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -498,7 +498,8 @@ def generate(env):
 
     # Default libs
     libs = []
-    if env['platform'] in ('posix', 'linux', 'freebsd', 'darwin'):
+    print env['platform']
+    if env['platform'] in ('darwin', 'freebsd', 'linux', 'posix', 'sunos'):
         libs += ['m', 'pthread', 'dl']
     env.Append(LIBS = libs)
 




More information about the mesa-commit mailing list