From 795a3e10be3a63349a8c265252a3df6131851a7f Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 14 Mar 2018 09:16:28 -0700 Subject: [PATCH] meson: radeonsi cannot be built with drm 2.4.90 Cc: 18.0 17.3 17.2 Signed-off-by: Dylan Baker [Emil Velikov: use correct version in commit message] Signed-off-by: Emil Vilikov --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e823cde504b..bc1905178d9 100644 --- a/meson.build +++ b/meson.build @@ -959,7 +959,9 @@ dep_libdrm_nouveau = [] dep_libdrm_etnaviv = [] dep_libdrm_freedreno = [] if with_amd_vk or with_gallium_radeonsi - dep_libdrm_amdgpu = dependency('libdrm_amdgpu', version : '>= 2.4.89') + dep_libdrm_amdgpu = dependency( + 'libdrm_amdgpu', version : ['>= 2.4.89', '!= 2.4.90'] + ) endif if (with_gallium_radeonsi or with_dri_r100 or with_dri_r200 or with_gallium_r300 or with_gallium_r600)