xf86-video-intel: configure.ac

Chris Wilson ickle at kemper.freedesktop.org
Thu Aug 8 11:45:51 PDT 2013


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

New commits:
commit cbf1f97d5dadbf569c7d26e78899bda95b28b16d
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Thu Aug 8 19:43:24 2013 +0100

    configure: Include the experimental features in the configuration summary
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/configure.ac b/configure.ac
index 88f29cc..80941dd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -332,6 +332,8 @@ if test "x$accel" = xnone -a "x$UMS_ONLY" != "xyes"; then
 	AC_MSG_ERROR([No default acceleration option])
 fi
 
+xp_msg=""
+
 AC_ARG_ENABLE(create2,
 	      AS_HELP_STRING([--enable-create2],
 			     [Enable use of create2 ioctl (experimental) [default=no]]),
@@ -340,6 +342,7 @@ AC_ARG_ENABLE(create2,
 AM_CONDITIONAL(USE_CREATE2, test x$CREATE2 = xyes)
 if test "x$CREATE2" = xyes; then
 	AC_DEFINE(USE_CREATE2,1,[Assume "create2" support])
+	xp_msg="$xp_msg create2"
 fi
 
 AC_ARG_ENABLE(userptr,
@@ -350,6 +353,7 @@ AC_ARG_ENABLE(userptr,
 AM_CONDITIONAL(USE_USERPTR, test x$USERPTR = xyes)
 if test "x$USERPTR" = xyes; then
 	AC_DEFINE(USE_USERPTR,1,[Assume "userptr" support])
+	xp_msg="$xp_msg userptr"
 fi
 
 AC_ARG_ENABLE(async-swap,
@@ -360,6 +364,7 @@ AC_ARG_ENABLE(async-swap,
 AM_CONDITIONAL(USE_ASYNC_SWAP, test x$ASYNC_SWAP = xyes)
 if test "x$ASYNC_SWAP" = xyes; then
 	AC_DEFINE(USE_ASYNC_SWAP,1,[Assume asynchronous swap support])
+	xp_msg="$xp_msg async-swap"
 fi
 
 AC_ARG_ENABLE(wt,
@@ -370,6 +375,7 @@ AC_ARG_ENABLE(wt,
 AM_CONDITIONAL(USE_WT, test x$WT = xyes)
 if test "x$WT" = xyes; then
 	AC_DEFINE(USE_WT,1,[Assume WriteThrough cacheing support])
+	xp_msg="$xp_msg wt-cache"
 fi
 
 AC_ARG_ENABLE(debug,
@@ -591,4 +597,7 @@ echo "  Acceleration backends:$accel_msg"
 echo "  Additional debugging support?$debug_msg"
 echo "  Support for Direct Rendering Infrastructure:$dri_msg"
 echo "  Support for Xv motion compensation (XvMC and libXvMC):$xvmc_msg"
+if test -n "$xp_msg"; then
+echo "  Experimental support:$xp_msg"
+fi
 echo ""


More information about the xorg-commit mailing list