From 8cb5656fd46d4b4d96b85b487a15f6d9c436b104 Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Tue, 4 Jul 2017 16:28:58 +0300 Subject: configure.ac: Make AMDGPU depend on libdrm >= 2.4.76 AMDGPU_FAMILY_AI was introduced in commit being part of libdrm 2.4.76 release and amd_basic tests are using that define. Since the module is turned on by default this results in compilation failing on machines with older libdrm. Let make them fail on ./configure step instead. Cc: Leo Liu Cc: Chris Wilson Reported-by: Martin Peres Signed-off-by: Arkadiusz Hiler --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 0418e605..bf09927c 100644 --- a/configure.ac +++ b/configure.ac @@ -217,7 +217,7 @@ if test "x$AMDGPU" = xauto; then PKG_CHECK_EXISTS([libdrm_amdgpu], [AMDGPU=yes], [AMDGPU=no]) fi if test "x$AMDGPU" = xyes; then - PKG_CHECK_MODULES(DRM_AMDGPU, [libdrm_amdgpu]) + PKG_CHECK_MODULES(DRM_AMDGPU, [libdrm_amdgpu >= 2.4.76]) AC_DEFINE(HAVE_LIBDRM_AMDGPU, 1, [Have amdgpu support]) fi AM_CONDITIONAL(HAVE_LIBDRM_AMDGPU, [test "x$AMDGPU" = xyes]) -- cgit v1.2.3