summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2016-09-29 18:35:01 +0100
committerAdam Jackson <ajax@redhat.com>2016-10-05 14:38:01 -0400
commit45e1220486139c483a69366323f8f590beffa19d (patch)
treeac7a90b66a4d9cc621c3cbdebfb389f76600ccc9 /configure.ac
parent501d8e2beb337e072c93c9310fcd927a099b9c3b (diff)
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 <alan.coopersmith@oracle.com> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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])