summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>2011-11-03 10:28:00 +0100
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2011-11-03 10:48:10 +0100
commit530a3e34232cd96f5db0d9626cd2a41ee9c58e29 (patch)
tree9954db8473974a868934cfa5fec971ce6e1bbdbe
parent73b34ce30e458969138e35b483e32a5f0f979b23 (diff)
downloadlibva-530a3e34232cd96f5db0d9626cd2a41ee9c58e29.tar.gz
configure: simplify summary.
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
-rw-r--r--configure.ac28
1 files changed, 9 insertions, 19 deletions
diff --git a/configure.ac b/configure.ac
index 48196a5..9e2cedf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -231,25 +231,15 @@ AC_OUTPUT([
])
# Print a small summary
-
-echo ""
-echo "libva - ${LIBVA_VERSION} (VA-API ${VA_API_VERSION})"
-echo ""
-
-echo " • Global :"
-echo " Prefix: ${prefix}"
-echo ""
-
-AS_IF([test x$enable_dummy_driver = xyes], [DRIVERS="dummy $DRIVERS"])
-
-echo " • Drivers: ${DRIVERS}"
-
AS_IF([test x$USE_GLX = xyes], [BACKENDS="glx $BACKENDS"])
AS_IF([test x$USE_EGL = xyes], [BACKENDS="egl $BACKENDS"])
-BACKENDS="x11 $BACKENDS"
-AS_IF([test x$enable_dummy_backend = xyes], [BACKENDS="dummy
-$BACKENDS"])
-
-echo " • Winsys : ${BACKENDS}"
-echo " • Documentation : ${enable_docs}"
+echo
+echo "libva - ${LIBVA_VERSION} (VA-API ${VA_API_VERSION})"
+echo
+echo Installation prefix .............. : $prefix
+echo Default driver path .............. : $LIBVA_DRIVERS_PATH
+echo Extra window systems ............. : $BACKENDS
+echo Build dummy driver ............... : $enable_dummy_driver
+echo Build documentation .............. : $enable_docs
+echo