summaryrefslogtreecommitdiffstats
path: root/src/gallium/SConscript
diff options
context:
space:
mode:
authorVinson Lee <vlee@freedesktop.org>2012-05-21 22:16:15 -0700
committerVinson Lee <vlee@freedesktop.org>2012-05-22 10:15:14 -0700
commite4fb332af1e62db930bc9a435cab3c0aa32cdea8 (patch)
treeba5841ddfb70eb8defbd403700d995b817bfd9db /src/gallium/SConscript
parent89155ba71d9d3bb8f8b6ea095f75eaf38122e09c (diff)
downloadexternal_mesa3d-e4fb332af1e62db930bc9a435cab3c0aa32cdea8.zip
external_mesa3d-e4fb332af1e62db930bc9a435cab3c0aa32cdea8.tar.gz
external_mesa3d-e4fb332af1e62db930bc9a435cab3c0aa32cdea8.tar.bz2
scons: Do not build glx and egl on Cygwin.
Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: José Fonseca <jfonseca@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 b61eba0..e212ed1 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', 'sunos']:
+ if env['platform'] not in ('cygwin', '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', 'sunos']:
+ if env['platform'] not in ('cygwin', 'darwin', 'haiku', 'sunos'):
SConscript([
'targets/egl-static/SConscript'
])