Re: [Mesa-dev] [PATCH 1/4] configure.ac: print whether GBM is enabled

2016-10-18 Thread Eric Engestrom
On Wednesday, 2016-10-19 00:00:02 +0200, Marek Olšák wrote:
> From: Marek Olšák 

Series is:
Reviewed-by: Eric Engestrom 

> 
> ---
>  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
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev


[Mesa-dev] [PATCH 1/4] configure.ac: print whether GBM is enabled

2016-10-18 Thread Marek Olšák
From: Marek Olšák 

---
 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

___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev