diff options
author | Eric Engestrom <[email protected]> | 2019-06-24 17:47:15 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-06-28 19:03:04 +0100 |
commit | 5819bc0e5c1802e0c0fb7544468d5ff635e1b268 (patch) | |
tree | 36bb556d36f3893d2e2c8d442b44b25b72a1b6a5 /meson.build | |
parent | 4ec32413f3545e771e9f4fee809f3b71fff75a1c (diff) |
meson: bump required libdrm version to 2.4.81
dbb4457d9858fa977246 started using drmDevicesEqual(), which was
introduced in libdrm 2.4.81
We could either copy the function locally, or bump the required version.
Since the function is non-trivial and 2.4.81 is old enough already,
I suggesting the latter.
Fixes: dbb4457d9858fa977246 ("egl: add EGL_EXT_device_drm support")
Cc: Emil Velikov <[email protected]>
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index ff529d33922..6238f98b8ca 100644 --- a/meson.build +++ b/meson.build @@ -1161,7 +1161,7 @@ _drm_amdgpu_ver = '2.4.97' _drm_radeon_ver = '2.4.71' _drm_nouveau_ver = '2.4.66' _drm_intel_ver = '2.4.75' -_drm_ver = '2.4.75' +_drm_ver = '2.4.81' _libdrm_checks = [ ['intel', with_dri_i915 or with_gallium_i915], |