configure.ac: default to disabled dri3 when --disable-dri is set
authorEmil Velikov <emil.l.velikov@gmail.com>
Sun, 22 Nov 2015 22:05:01 +0000 (22:05 +0000)
committerEmil Velikov <emil.l.velikov@gmail.com>
Mon, 23 Nov 2015 12:08:04 +0000 (12:08 +0000)
Not too long ago, the dri3 code was living in src/glx, which in itself
was guarded by HAVE_DRI_GLX. As the name suggests we didn't dive into
the folder when dri was disabled, thus we missed that dri3 does not
consider/honour --enable-dri.

Cc: mesa-stable@lists.freedesktop.org
Fixes: 6bd9ba7d074 "loader: Add dri3 helper"
Cc: Pali Rohár <pali.rohar@gmail.com>
Reported-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
configure.ac

index 120c93e7e735a8f179d791f10342c658877611bf..40168715fc677624803225bd870599506b84f857 100644 (file)
@@ -767,6 +767,11 @@ linux*)
     dri3_default=no
     ;;
 esac
+
+if test "x$enable_dri" = xno; then
+    dri3_default=no
+fi
+
 AC_ARG_ENABLE([dri3],
     [AS_HELP_STRING([--enable-dri3],
         [enable DRI3 @<:@default=auto@:>@])],