diff options
author | Vinson Lee <vlee@freedesktop.org> | 2012-05-21 22:16:15 -0700 |
---|---|---|
committer | Vinson Lee <vlee@freedesktop.org> | 2012-05-22 10:15:14 -0700 |
commit | e4fb332af1e62db930bc9a435cab3c0aa32cdea8 (patch) | |
tree | ba5841ddfb70eb8defbd403700d995b817bfd9db /src/gallium/SConscript | |
parent | 89155ba71d9d3bb8f8b6ea095f75eaf38122e09c (diff) |
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/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/SConscript b/src/gallium/SConscript index b61eba0390..e212ed184c 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' ]) |