mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
scons: Do not build EGL on Solaris.
The current EGL headers do not support Solaris. Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
51691f0767
commit
5cc4b4aaf4
2 changed files with 3 additions and 3 deletions
|
|
@ -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')
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue