From 0f028d7438d225eadd60658a5de14a57ac5b97af Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Mon, 1 Oct 2012 09:01:28 -0700 Subject: [PATCH] Make the configure summary more legible. This almost, but doesn't quite, copy the layout the opus configure script uses. --- configure.ac | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index c4f4770..f5b5701 100644 --- a/configure.ac +++ b/configure.ac @@ -65,7 +65,7 @@ AS_IF([test "x$enable_fixed_point" = "xyes"], AC_SEARCH_LIBS([lrintf], [m], [ AC_DEFINE([OP_HAVE_LRINTF], [1], [Enable use of lrintf function]) lrintf_notice=" - Library for lrintf() ....... : ${ac_cv_search_lrintf}" + Library for lrintf() ......... ${ac_cv_search_lrintf}" ]) ] ) @@ -101,12 +101,17 @@ AC_OUTPUT([ ]) AC_MSG_NOTICE([ -Summary: - -Assertions ................... : ${enable_assertions} -HTTP support ................. : ${enable_http} -Fixed-point .................. : ${enable_fixed_point} -Floating-point API ........... : ${enable_float}${lrintf_notice} -Hidden visibility ............ : ${cc_cv_flag_visibility} -API documentation ............ : ${enable_doc} +------------------------------------------------------------------------ + $PACKAGE $VERSION: Automatic configuration OK. + + Assertions ................... ${enable_assertions} + + HTTP support ................. ${enable_http} + Fixed-point .................. ${enable_fixed_point} + Floating-point API ........... ${enable_float}${lrintf_notice} + + Hidden visibility ............ ${cc_cv_flag_visibility} + + API documentation ............ ${enable_doc} +------------------------------------------------------------------------ ]) -- GitLab