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/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/SConscript')
-rw-r--r-- | src/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript index 777ad23f2c..e4cda2fd03 100644 --- a/src/SConscript +++ b/src/SConscript @@ -22,7 +22,7 @@ SConscript('mesa/SConscript') SConscript('mapi/vgapi/SConscript') if not env['embedded']: - if env['platform'] not in ['windows', 'darwin', 'haiku']: + if env['platform'] not in ('cygwin', 'darwin', 'haiku', 'windows'): SConscript('glx/SConscript') if env['platform'] not in ['darwin', 'haiku', 'sunos']: SConscript('egl/main/SConscript') |