From: Marek Olšák Date: Tue, 12 Jan 2016 19:08:46 +0000 (+0100) Subject: configure.ac: don't require EGL/DRM and GBM if OpenGL is disabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=98cebc913cd7ad07ce9699b5f63d72fe3969c851;p=mesa.git configure.ac: don't require EGL/DRM and GBM if OpenGL is disabled This allows building VDPAU/OMX/VA drivers without OpenGL and its dependencies. Reviewed-by: Michel Dänzer --- diff --git a/configure.ac b/configure.ac index 4172eaeefd9..b05f33d4364 100644 --- a/configure.ac +++ b/configure.ac @@ -2159,7 +2159,12 @@ gallium_require_drm_loader() { fi } +dnl This is for Glamor. Skip this if OpenGL is disabled. require_egl_drm() { + if test "x$enable_opengl" = xno; then + return 0 + fi + case "$with_egl_platforms" in *drm*) ;;