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

Eric Engestrom eric at engestrom.ch
Tue Oct 18 22:21:57 UTC 2016


On Wednesday, 2016-10-19 00:00:02 +0200, Marek Olšák wrote:
> From: Marek Olšák <marek.olsak at amd.com>

Series is:
Reviewed-by: Eric Engestrom <eric at engestrom.ch>

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