From fb2693c0ffc6b8dca0bb5e57d6f00cdca8a6966a Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Mon, 21 Sep 2020 16:51:35 -0700 Subject: [PATCH] configure: Cleanup/reorg output. --- configure.ac | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/configure.ac b/configure.ac index fc9490509..b5e5d5f42 100644 --- a/configure.ac +++ b/configure.ac @@ -2488,47 +2488,46 @@ AC_OUTPUT dnl Make it look sexay! echo -echo "Branding .......................... $BRANDING_NAME $BRANDING_VERSION" echo "Configured ........................ $PACKAGE_NAME $PACKAGE_VERSION" -echo "Configuration time ................ $RB_DATESTR" -echo "C Compiler ........................ $CC" -echo "C Compiler flags (CFLAGS) ......... $CFLAGS" +echo "Configured time ................... $RB_DATESTR" +echo echo "C++ Compiler ...................... $CXX" echo "C++ Compiler flags (CXXFLAGS) ..... $CXXFLAGS" +echo echo "Linker ............................ $LD" echo "Linker flags (LDFLAGS) ............ $LDFLAGS" -echo "Targeting platform (host) ......... $host_cpu $host_vendor $host_os" +echo +echo "Target platform (host) ............ $host_cpu $host_vendor $host_os" echo "Developer platform (build) ........ $build_cpu $build_vendor $build_os" echo "Developer debug ................... $debug" echo "Developer assert .................. $assert ($assert_type)" echo "Developer profiling ............... $profiling" -echo "Low-memory compile ................ $lowmem_compile" echo "Precompiled headers ............... $build_pch" echo "Optimized compile ................. $optimize" echo "Optimized linking ................. $lto" echo "Optimization level ................ $optimize_level" echo "Machine tuned ..................... $machine_tuning" -echo "Memory allocator .................. $alloc_lib" -echo "Building boost .................... $with_included_boost" -echo "Building RocksDB .................. $with_included_rocksdb" -echo "Building JS (SpiderMonkey) ........ $with_included_js" -echo "IPv6 support ...................... $ipv6" +echo +echo "ImageMagick support ............... $have_imagemagick" +echo "Magic support ..................... $have_magic" echo "Unicode (icuuc) support ........... $have_icuuc" echo "Ziplinks (libz) support ........... $have_zlib" +echo "Zstandard (zstd) support .......... $have_zstd" echo "Snappy support .................... $have_snappy" echo "LZ4 support ....................... $have_lz4" -echo "Zstandard ......................... $have_zstd" -echo "GNU MP support .................... $have_gmp" +echo "SSL support ....................... $have_ssl" echo "Crypto support .................... $have_crypto" echo "Sodium support .................... $have_sodium" -echo "SSL support ....................... $have_ssl" +echo "GNU MP support .................... $have_gmp" echo "PBC support ....................... $have_pbc" -echo "Magic support ..................... $have_magic" -echo "ImageMagick support ............... $have_imagemagick" echo "LLVM library support .............. $have_libllvm" echo "Linux AIO support ................. $aio" echo "Linux io_uring support ............ $io_uring" -echo "Logging level ..................... $LOG_LEVEL" +echo "Memory allocator .................. $alloc_lib" +echo +echo "Using bundled Boost ............... $with_included_boost" +echo "Using bundled RocksDB ............. $with_included_rocksdb" +echo echo "Install Prefix .................... $prefix" echo "Binary directory .................. $bindir" echo "Config directory .................. $sysconfdir" @@ -2542,5 +2541,9 @@ echo "Runtime state directory ........... $runstatedir" echo "Database directory ................ $dbdir" echo "Logging directory ................. $logdir" echo +echo "Matrix ID (mxid) length ........... $MXID_MAXLEN" +echo "Logging level ..................... $LOG_LEVEL" +echo "Branding .......................... $BRANDING_NAME $BRANDING_VERSION" +echo echo "* Ready to build $PACKAGE_NAME" echo "* Now run 'make'"