From b541677c4e4017708eb98e00eef945eefc602712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Tue, 10 Aug 2021 12:20:52 +0200 Subject: [PATCH] Tweak jemalloc warning text in configure.ac --- configure.ac | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 3be9691842..c67a826824 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)"