[Mesa-dev] [PATCH 3/4] configure.ac: enable EGL platform DRM if GBM is enabled

Marek Olšák maraeo at gmail.com
Tue Oct 18 22:00:04 UTC 2016


From: Marek Olšák <marek.olsak at amd.com>

since GBM is enabled by default, this is also enabled by default

the whitespace changes remove tabs
---
 configure.ac | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 3431a5d..12c8165 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2010,23 +2010,27 @@ AC_SUBST([EGL_CLIENT_APIS])
 
 dnl
 dnl EGL Platforms configuration
 dnl
 AC_ARG_WITH([egl-platforms],
     [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
         [comma delimited native platforms libEGL supports, e.g.
         "x11,drm" @<:@default=auto@:>@])],
     [with_egl_platforms="$withval"],
     [if test "x$enable_egl" = xyes; then
-	with_egl_platforms="x11"
+        if test "x$enable_gbm" = xyes; then
+           with_egl_platforms="x11,drm"
+        else
+           with_egl_platforms="x11"
+        fi
     else
-	with_egl_platforms=""
+        with_egl_platforms=""
     fi])
 
 if test "x$with_egl_platforms" != "x" -a "x$enable_egl" != xyes; then
     AC_MSG_ERROR([cannot build egl state tracker without EGL library])
 fi
 
 PKG_CHECK_MODULES([WAYLAND_SCANNER], [wayland-scanner],
         WAYLAND_SCANNER=`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`,
         WAYLAND_SCANNER='')
 if test "x$WAYLAND_SCANNER" = x; then
-- 
2.7.4



More information about the mesa-dev mailing list