From 32d103c58072f117817c42c8947a0aebbc263639 Mon Sep 17 00:00:00 2001 From: llyyr Date: Tue, 17 Dec 2024 17:00:56 +0530 Subject: [PATCH] meson: bump libdrm version to 2.4.109 The previous check was incorrect because drmGetDeviceFromDevId is only available since 2.4.109. https://gitlab.freedesktop.org/mesa/drm/-/commit/57e0b0552e11b3f04e6d5704c1c7efea5f83ffe4 Fixes: 0d7b4d64a5ec9b9ef132c07c1fb6712b1653101f --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 57b8e89edcf49..d33432362498e 100644 --- a/meson.build +++ b/meson.build @@ -946,7 +946,7 @@ if features['direct3d'] sources += files('video/out/vo_direct3d.c') endif -drm = dependency('libdrm', version: '>= 2.4.105', required: get_option('drm')) +drm = dependency('libdrm', version: '>= 2.4.109', required: get_option('drm')) libdisplay_info = dependency('libdisplay-info', version: '>= 0.1.1', required: get_option('drm')) features += {'drm': drm.found() and libdisplay_info.found() and (features['vt.h'] or features['consio.h'] or features['wsdisplay-usl-io.h'])}