From: Emil Velikov Date: Sat, 22 Feb 2014 16:47:21 +0000 (+0000) Subject: configure: correctly report if we're building the sw/xlib winsys X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61973ffe5b3b676472bab29b1f556278ecce8cbf;p=mesa.git configure: correctly report if we're building the sw/xlib winsys While looking at bug 75356, I've noticed that the presence of x11 egl platform pulls in sw/xlib as "needed" but fails to report so at the end of configure. Tested-by: Tom Stellard Signed-off-by: Emil Velikov --- diff --git a/configure.ac b/configure.ac index d42803c8a45..24ffc545b78 100644 --- a/configure.ac +++ b/configure.ac @@ -1448,6 +1448,7 @@ else fi if echo "$egl_platforms" | grep 'x11' >/dev/null 2>&1; then + GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib" NEED_WINSYS_XLIB=yes fi AM_CONDITIONAL(HAVE_EGL_PLATFORM_X11, echo "$egl_platforms" | grep 'x11' >/dev/null 2>&1)