Files
xserver/Xext/dri2/meson.build
stefan11111 dc39eda42b treewide: Move the dri2 extension to Xext and use it for all X servers
This is needed to get proton working in Xfbdev, but is probably useful in other places too.

Xephyr has some unrelated issues regaring Xinput, so steam doesn't work there.

Signed-off-by: stefan11111 <stefan11111@shitposting.expert>
2026-01-02 17:51:43 +01:00

19 lines
301 B
Meson

srcs_dri2 = [
'dri2.c',
'dri2ext.c',
]
libxserver_dri2 = []
if build_dri2
libxserver_dri2 = static_library('xserver_dri2',
srcs_dri2,
include_directories: inc,
dependencies: [ common_dep, libdrm_dep ],
)
endif
if build_xorg
install_data('dri2.h', install_dir: xorgsdkdir)
endif