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 /src/SConscript | |
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]>
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 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') |