mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-06 20:50:31 +01:00
scons: don't build the kms-dri winsys
Same as previous commit - unused (gbm is not a thing outside the autotools build). v2: Remove trailing HAVE_LIBDRM. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
This commit is contained in:
parent
a29a8b92ff
commit
66d77cd71c
4 changed files with 0 additions and 30 deletions
|
|
@ -46,7 +46,6 @@ if env['platform'] == 'haiku':
|
|||
if env['dri']:
|
||||
SConscript([
|
||||
'winsys/sw/dri/SConscript',
|
||||
'winsys/sw/kms-dri/SConscript',
|
||||
'winsys/svga/drm/SConscript',
|
||||
])
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ env.Append(CPPPATH = [
|
|||
|
||||
env.Append(CPPDEFINES = [
|
||||
('GALLIUM_STATIC_TARGETS', '1'),
|
||||
'GALLIUM_SOFTPIPE',
|
||||
])
|
||||
|
||||
sources = env.ParseSourceList('Makefile.sources', 'common_SOURCES')
|
||||
|
|
|
|||
|
|
@ -29,7 +29,6 @@ env.Append(CPPDEFINES = [
|
|||
'GALLIUM_VMWGFX',
|
||||
'GALLIUM_SOFTPIPE',
|
||||
'DRI_TARGET',
|
||||
'HAVE_LIBDRM',
|
||||
])
|
||||
|
||||
env.Prepend(LIBS = [
|
||||
|
|
@ -37,7 +36,6 @@ env.Prepend(LIBS = [
|
|||
svgadrm,
|
||||
svga,
|
||||
ws_dri,
|
||||
ws_kms_dri,
|
||||
softpipe,
|
||||
libloader,
|
||||
mesautil,
|
||||
|
|
@ -58,9 +56,6 @@ module = env.LoadableModule(
|
|||
env.Command('vmwgfx_dri.so', 'gallium_dri.so', "ln -f ${SOURCE} ${TARGET}")
|
||||
# swrast_dri.so
|
||||
env.Command('swrast_dri.so', 'gallium_dri.so', "ln -f ${SOURCE} ${TARGET}")
|
||||
# kms_swrast_dri.so
|
||||
env.Command('kms_swrast_dri.so', 'gallium_dri.so', "ln -f ${SOURCE} ${TARGET}")
|
||||
|
||||
env.Alias('dri-vmwgfx', module)
|
||||
env.Alias('dri-swrast', module)
|
||||
env.Alias('dri-kms-swrast', module)
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
#######################################################################
|
||||
# SConscript for kms-dri winsys
|
||||
|
||||
|
||||
Import('*')
|
||||
|
||||
if env['platform'] not in ('linux'):
|
||||
Return()
|
||||
|
||||
env = env.Clone()
|
||||
|
||||
env.PkgUseModules('DRM')
|
||||
|
||||
env.Append(CPPPATH = [
|
||||
'#/src/gallium/include',
|
||||
'#/src/gallium/auxiliary',
|
||||
])
|
||||
|
||||
ws_kms_dri = env.ConvenienceLibrary(
|
||||
target = 'ws_kms_dri',
|
||||
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES'),
|
||||
)
|
||||
Export('ws_kms_dri')
|
||||
Loading…
Add table
Reference in a new issue