[Mesa-dev] [PATCH 1/4] configure.ac: print whether GBM is enabled
Marek Olšák
maraeo at gmail.com
Tue Oct 18 22:00:02 UTC 2016
From: Marek Olšák <marek.olsak at amd.com>
---
configure.ac | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/configure.ac b/configure.ac
index 8e779d4..bc9b732 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2860,20 +2860,25 @@ if test "$enable_egl" = yes; then
egl_drivers=""
if test "x$HAVE_EGL_DRIVER_DRI2" != "x"; then
egl_drivers="$egl_drivers builtin:egl_dri2"
fi
if test "x$HAVE_EGL_DRIVER_DRI3" != "x"; then
egl_drivers="$egl_drivers builtin:egl_dri3"
fi
echo " EGL drivers: $egl_drivers"
fi
+if test "x$enable_gbm" = xyes; then
+ echo " GBM: yes"
+else
+ echo " GBM: no"
+fi
# Vulkan
echo ""
if test "x$VULKAN_DRIVERS" != x; then
echo " Vulkan drivers: $VULKAN_DRIVERS"
echo " Vulkan ICD dir: $VULKAN_ICD_INSTALL_DIR"
else
echo " Vulkan drivers: no"
fi
--
2.7.4
More information about the mesa-dev
mailing list