Files
xserver/glx/meson.build
stefan11111 63f2422475 glx: include: meson_options.txt: Allow disabling DRI glx backends
This allows building the X server with glx and without mesa.
This also makes the X server optionally no longer be a loader for dri drivers.

Fixes: https://gitlab.freedesktop.org/xorg/xserver/-/issues/1638
Fixes: https://gitlab.freedesktop.org/xorg/xserver/-/issues/1819

Signed-off-by: stefan11111 <stefan11111@shitposting.expert>
2025-12-16 15:56:04 +01:00

89 lines
1.8 KiB
Meson

srcs_glx = [
'indirect_dispatch.c',
'indirect_dispatch_swap.c',
'indirect_reqsize.c',
'indirect_size_get.c',
'indirect_table.c',
'clientinfo.c',
'createcontext.c',
'extension_string.c',
'indirect_util.c',
'indirect_program.c',
'indirect_texture_compression.c',
'glxcmds.c',
'glxcmdsswap.c',
'glxext.c',
'glxscreens.c',
'render2.c',
'render2swap.c',
'renderpix.c',
'renderpixswap.c',
'rensize.c',
'single2.c',
'single2swap.c',
'singlepix.c',
'singlepixswap.c',
'singlesize.c',
'swap_interval.c',
'xfont.c',
]
srcs_glxdri2 = []
if build_glx_dri
srcs_glx += 'glx_dri/glxdriswrast.c'
srcs_glx += 'glx_dri/glxdricommon.c'
if build_dri2 or build_dri3
srcs_glxdri2 = files('glx_dri/glxdri2.c')
endif
endif
libxserver_glx = []
if build_glx
libxserver_glx = static_library('xserver_glx',
srcs_glx,
include_directories: inc,
dependencies: [
common_dep,
dl_dep,
dri_dep,
dependency('glproto', version: '>= 1.4.17'),
dependency('gl', version: '>= 1.2'),
],
c_args: [
glx_align64,
# XXX: generated code includes an unused function
'-Wno-unused-function',
]
)
endif
srcs_vnd = [
'vndcmds.c',
'vndext.c',
'vndservermapping.c',
'vndservervendor.c',
]
hdrs_vnd = [
'vndserver.h',
]
libglxvnd = []
if build_glx
libglxvnd = static_library('glxvnd',
srcs_vnd,
include_directories: inc,
dependencies: [
common_dep,
dl_dep,
dependency('glproto', version: '>= 1.4.17'),
dependency('gl', version: '>= 1.2'),
],
)
if build_xorg
install_data(hdrs_vnd, install_dir : xorgsdkdir)
endif
endif