From: Michał Kępień Date: Tue, 10 Aug 2021 10:20:52 +0000 (+0200) Subject: Tweak jemalloc warning text in configure.ac X-Git-Tag: v9.17.17~2^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d77f1779773d7293ed6e5d63647281a625cf044;p=thirdparty%2Fbind9.git Tweak jemalloc warning text in configure.ac --- diff --git a/configure.ac b/configure.ac index 3be9691842b..c67a8268249 100644 --- a/configure.ac +++ b/configure.ac @@ -1770,11 +1770,18 @@ report() { echo "Features disabled or unavailable on this platform:" if test "no" = "$with_jemalloc"; then echo " Memory allocator: system" - echo " WARNING: This is not a recommended configuration" - echo " WARNING: Using system memory allocator causes" - echo " WARNING: reduced performance and increased memory" - echo " WARNING: fragmentation. Installing jemalloc >= 4.0.0" - echo " WARNING: memory allocator is strongly recommended." + echo + echo " +------------------------------------------+" + echo " | ==== WARNING ==== |" + echo " | |" + echo " | This is NOT a recommended configuration. |" + echo " | Using the system memory allocator causes |" + echo " | reduced performance and increased memory |" + echo " | fragmentation. Installing the jemalloc |" + echo " | memory allocator (version >= 4.0.0) is |" + echo " | strongly recommended. |" + echo " +------------------------------------------+" + echo fi test "small" = "$with_tuning" || echo " Small-system tuning (--with-tuning)"