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/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SConscript') diff --git a/src/SConscript b/src/SConscript index 777ad23..e4cda2f 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') -- cgit v1.1