diff options
author | Vinson Lee <[email protected]> | 2012-04-30 18:57:38 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2012-05-03 22:58:35 -0700 |
commit | 5cc4b4aaf43d038a2788522613f283e5f4b9182d (patch) | |
tree | ddc989990d42bc506c645e9a6112e9736381f676 | |
parent | 51691f0767f6a75a1f549cd979a878a0ad12a228 (diff) |
scons: Do not build EGL on Solaris.
The current EGL headers do not support Solaris.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
-rw-r--r-- | src/SConscript | 2 | ||||
-rw-r--r-- | src/gallium/SConscript | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/SConscript b/src/SConscript index ba6be0be1a0..777ad23f2c9 100644 --- a/src/SConscript +++ b/src/SConscript @@ -24,7 +24,7 @@ SConscript('mapi/vgapi/SConscript') if not env['embedded']: if env['platform'] not in ['windows', 'darwin', 'haiku']: SConscript('glx/SConscript') - if env['platform'] not in ['darwin', 'haiku']: + if env['platform'] not in ['darwin', 'haiku', 'sunos']: SConscript('egl/main/SConscript') if env['platform'] not in ['darwin']: SConscript('glu/sgi/SConscript') diff --git a/src/gallium/SConscript b/src/gallium/SConscript index 962c1545f64..b61eba0390e 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']: + if env['platform'] not in ['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']: + if env['platform'] not in ['darwin', 'haiku', 'sunos']: SConscript([ 'targets/egl-static/SConscript' ]) |