From 45e1220486139c483a69366323f8f590beffa19d Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Thu, 29 Sep 2016 18:35:01 +0100 Subject: [PATCH] configure.ac: default to DRI=yes on solaris platforms Afaict there's little-to-no reason/way one would want xserver without DRI support on Solaris platforms. This will allow us to simplify/fix all the libdrm detection in the next commit. Cc: Alan Coopersmith Signed-off-by: Emil Velikov Reviewed-by: Alan Coopersmith Reviewed-by: Adam Jackson --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f5c79abeb..7a8187eb6 100644 --- a/configure.ac +++ b/configure.ac @@ -411,7 +411,7 @@ case $host_os in DRI=yes ;; *solaris*) - PKG_CHECK_EXISTS(libdrm, DRI=yes, DRI=no) + DRI=yes ;; darwin*) AC_DEFINE(CSRG_BASED, 1, [System is BSD-like])