0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 01:59:33 +02:00

configure: Cleanup/reorg output.

This commit is contained in:
Jason Volk 2020-09-21 16:51:35 -07:00
parent 8155c38f7f
commit fb2693c0ff

View file

@ -2488,47 +2488,46 @@ AC_OUTPUT
dnl Make it look sexay! dnl Make it look sexay!
echo echo
echo "Branding .......................... $BRANDING_NAME $BRANDING_VERSION"
echo "Configured ........................ $PACKAGE_NAME $PACKAGE_VERSION" echo "Configured ........................ $PACKAGE_NAME $PACKAGE_VERSION"
echo "Configuration time ................ $RB_DATESTR" echo "Configured time ................... $RB_DATESTR"
echo "C Compiler ........................ $CC" echo
echo "C Compiler flags (CFLAGS) ......... $CFLAGS"
echo "C++ Compiler ...................... $CXX" echo "C++ Compiler ...................... $CXX"
echo "C++ Compiler flags (CXXFLAGS) ..... $CXXFLAGS" echo "C++ Compiler flags (CXXFLAGS) ..... $CXXFLAGS"
echo
echo "Linker ............................ $LD" echo "Linker ............................ $LD"
echo "Linker flags (LDFLAGS) ............ $LDFLAGS" 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 platform (build) ........ $build_cpu $build_vendor $build_os"
echo "Developer debug ................... $debug" echo "Developer debug ................... $debug"
echo "Developer assert .................. $assert ($assert_type)" echo "Developer assert .................. $assert ($assert_type)"
echo "Developer profiling ............... $profiling" echo "Developer profiling ............... $profiling"
echo "Low-memory compile ................ $lowmem_compile"
echo "Precompiled headers ............... $build_pch" echo "Precompiled headers ............... $build_pch"
echo "Optimized compile ................. $optimize" echo "Optimized compile ................. $optimize"
echo "Optimized linking ................. $lto" echo "Optimized linking ................. $lto"
echo "Optimization level ................ $optimize_level" echo "Optimization level ................ $optimize_level"
echo "Machine tuned ..................... $machine_tuning" echo "Machine tuned ..................... $machine_tuning"
echo "Memory allocator .................. $alloc_lib" echo
echo "Building boost .................... $with_included_boost" echo "ImageMagick support ............... $have_imagemagick"
echo "Building RocksDB .................. $with_included_rocksdb" echo "Magic support ..................... $have_magic"
echo "Building JS (SpiderMonkey) ........ $with_included_js"
echo "IPv6 support ...................... $ipv6"
echo "Unicode (icuuc) support ........... $have_icuuc" echo "Unicode (icuuc) support ........... $have_icuuc"
echo "Ziplinks (libz) support ........... $have_zlib" echo "Ziplinks (libz) support ........... $have_zlib"
echo "Zstandard (zstd) support .......... $have_zstd"
echo "Snappy support .................... $have_snappy" echo "Snappy support .................... $have_snappy"
echo "LZ4 support ....................... $have_lz4" echo "LZ4 support ....................... $have_lz4"
echo "Zstandard ......................... $have_zstd" echo "SSL support ....................... $have_ssl"
echo "GNU MP support .................... $have_gmp"
echo "Crypto support .................... $have_crypto" echo "Crypto support .................... $have_crypto"
echo "Sodium support .................... $have_sodium" echo "Sodium support .................... $have_sodium"
echo "SSL support ....................... $have_ssl" echo "GNU MP support .................... $have_gmp"
echo "PBC support ....................... $have_pbc" echo "PBC support ....................... $have_pbc"
echo "Magic support ..................... $have_magic"
echo "ImageMagick support ............... $have_imagemagick"
echo "LLVM library support .............. $have_libllvm" echo "LLVM library support .............. $have_libllvm"
echo "Linux AIO support ................. $aio" echo "Linux AIO support ................. $aio"
echo "Linux io_uring support ............ $io_uring" 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 "Install Prefix .................... $prefix"
echo "Binary directory .................. $bindir" echo "Binary directory .................. $bindir"
echo "Config directory .................. $sysconfdir" echo "Config directory .................. $sysconfdir"
@ -2542,5 +2541,9 @@ echo "Runtime state directory ........... $runstatedir"
echo "Database directory ................ $dbdir" echo "Database directory ................ $dbdir"
echo "Logging directory ................. $logdir" echo "Logging directory ................. $logdir"
echo 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 "* Ready to build $PACKAGE_NAME"
echo "* Now run 'make'" echo "* Now run 'make'"