Skip to content

Commit

Permalink
meson: bump libdrm version to 2.4.109
Browse files Browse the repository at this point in the history
The previous check was incorrect because drmGetDeviceFromDevId is only
available since 2.4.109.

https://gitlab.freedesktop.org/mesa/drm/-/commit/57e0b0552e11b3f04e6d5704c1c7efea5f83ffe4

Fixes: 0d7b4d6
  • Loading branch information
llyyr authored and Dudemanguy committed Dec 17, 2024
1 parent a6f93ac commit 32d103c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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'])}
Expand Down

0 comments on commit 32d103c

Please sign in to comment.