configure.ac: increase minimum xserver version to 25.0.0

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-12-19 16:02:49 +01:00
parent b91d99f508
commit 7d1cfb1d2e
2 changed files with 2 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ PKG_CHECK_MODULES(LIBDRM_AMDGPU, [libdrm_amdgpu >= 2.4.121])
PKG_CHECK_MODULES(GBM, [gbm])
# Obtain compiler/linker options for the driver dependencies
PKG_CHECK_MODULES(XORG, [xorg-server >= 1.18 xproto fontsproto xf86driproto $REQUIRED_MODULES])
PKG_CHECK_MODULES(XORG, [xorg-server >= 25.0.0 xproto fontsproto xf86driproto $REQUIRED_MODULES])
PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1])
# Section "OutputClass" is only supported as of xserver 1.16

View File

@@ -8,7 +8,7 @@ project(
)
# Dependencies
xorg_dep = dependency('xorg-server', version: '>=1.18', required: true)
xorg_dep = dependency('xorg-server', version: '>=25.0.0', required: true)
xproto_dep = dependency('xproto', required: true)
fontsproto_dep = dependency('fontsproto', required: true)
xf86driproto_dep = dependency('xf86driproto', required: true)