From: Chia-I Wu Date: Sun, 19 Sep 2010 09:31:34 +0000 (+0800) Subject: egl: Enable drm platform by default. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2a910b339672e80e70d49d01ac7e8e870068e7ad;p=mesa.git egl: Enable drm platform by default. This enables EGL_MESA_drm_display for st/egl in the default setup. --- diff --git a/configure.ac b/configure.ac index b19bf8fdf20..cf743ba9bfb 100644 --- a/configure.ac +++ b/configure.ac @@ -1376,6 +1376,9 @@ case "$with_egl_platforms" in yes) if test "x$enable_egl" = xyes && test "x$mesa_driver" != xosmesa; then EGL_PLATFORMS="x11" + if test "$mesa_driver" = dri; then + EGL_PLATFORMS="$EGL_PLATFORMS drm" + fi fi ;; *)