diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2015-07-14 01:52:51 +0100 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2015-07-22 16:35:26 +0100 |
commit | 78674631a2d0ff1eb538470e2a1d516201361f03 (patch) | |
tree | 92dccdeb471206f7eaea65b1f33532686ece9e69 /src/SConscript | |
parent | ce2a4bd541241dade00a36e9f2d8e5ca16c6ff03 (diff) |
egl: remove the non-haiku scons build
It has been broken since 2011 with commit c98ea26e16b(egl: Make
egl_dri2 and egl_glx built-in drivers.). When the backends got merged
into the main library each entry point was guarded by a
_EGL_BUILT_IN_DRIVER_* define.
As the define was missing, the linker kindly removed the whole of the
dri2 backend, thus we did not notice any errors due to the unresolved
link to xcb and friends.
Cc: Chia-I Wu <olv@lunarg.com>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/SConscript')
-rw-r--r-- | src/SConscript | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/SConscript b/src/SConscript index b0578e8925..46482fbd62 100644 --- a/src/SConscript +++ b/src/SConscript @@ -31,10 +31,6 @@ SConscript('mesa/SConscript') if not env['embedded']: if env['platform'] not in ('cygwin', 'darwin', 'freebsd', 'haiku', 'windows'): SConscript('glx/SConscript') - if env['platform'] not in ['darwin', 'haiku', 'sunos', 'windows']: - if env['dri']: - SConscript('egl/drivers/dri2/SConscript') - SConscript('egl/main/SConscript') if env['platform'] == 'haiku': SConscript('egl/drivers/haiku/SConscript') SConscript('egl/main/SConscript') |