xf86-video-intel: configure.ac

Chris Wilson ickle at kemper.freedesktop.org
Wed Oct 2 08:19:37 PDT 2013


 configure.ac |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit db1edf0e10c6d3665d3bb2ffd381b1ba722cad95
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Wed Oct 2 16:17:35 2013 +0100

    configure: Error out if glamor request but UXA is disabled
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/configure.ac b/configure.ac
index 5484c86..523a39e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -304,6 +304,9 @@ AC_ARG_ENABLE(glamor,
 	      [GLAMOR="$enableval"],
 	      [GLAMOR="no"])
 if test "x$GLAMOR" != "xno"; then
+	if test "x$UXA" != "xyes"; then
+		AC_MSG_ERROR([Glamor acceleration requested but UXA is not enabled])
+	fi
 	PKG_CHECK_MODULES(LIBGLAMOR, [glamor >= 0.3.1])
 	PKG_CHECK_MODULES(LIBGLAMOR_EGL, [glamor-egl])
 	AC_DEFINE(USE_GLAMOR, 1, [Enable glamor acceleration])


More information about the xorg-commit mailing list