From: Vinson Lee Date: Tue, 22 May 2012 05:16:15 +0000 (-0700) Subject: scons: Do not build glx and egl on Cygwin. X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=e4fb332af1e62db930bc9a435cab3c0aa32cdea8 scons: Do not build glx and egl on Cygwin. Signed-off-by: Vinson Lee Reviewed-by: José Fonseca --- diff --git a/src/SConscript b/src/SConscript index 777ad23f2c9..e4cda2fd03e 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') 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' ])