From e4fb332af1e62db930bc9a435cab3c0aa32cdea8 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Mon, 21 May 2012 22:16:15 -0700 Subject: scons: Do not build glx and egl on Cygwin. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Vinson Lee Reviewed-by: José Fonseca --- src/gallium/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gallium/SConscript') diff --git a/src/gallium/SConscript b/src/gallium/SConscript index b61eba0390e..e212ed184cf 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' ]) -- cgit v1.2.3