summaryrefslogtreecommitdiff
path: root/src/gallium/SConscript
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2012-04-30 18:57:38 -0700
committerVinson Lee <vlee@freedesktop.org>2012-05-03 22:58:35 -0700
commit5cc4b4aaf43d038a2788522613f283e5f4b9182d (patch)
treeddc989990d42bc506c645e9a6112e9736381f676 /src/gallium/SConscript
parent51691f0767f6a75a1f549cd979a878a0ad12a228 (diff)
scons: Do not build EGL on Solaris.
The current EGL headers do not support Solaris. Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/gallium/SConscript')
-rw-r--r--src/gallium/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/SConscript b/src/gallium/SConscript
index 962c1545f64..b61eba0390e 100644
--- a/src/gallium/SConscript
+++ b/src/gallium/SConscript
@@ -58,7 +58,7 @@ SConscript('winsys/sw/null/SConscript')
if not env['embedded']:
SConscript('state_trackers/vega/SConscript')
- if env['platform'] not in ['darwin', 'haiku']:
+ if env['platform'] not in ['darwin', 'haiku', 'sunos']:
SConscript('state_trackers/egl/SConscript')
if env['x11']:
@@ -124,7 +124,7 @@ SConscript([
])
if not env['embedded']:
- if env['platform'] not in ['darwin', 'haiku']:
+ if env['platform'] not in ['darwin', 'haiku', 'sunos']:
SConscript([
'targets/egl-static/SConscript'
])