From 4873cc26f2e0d95dae3e7621ded458a6e4e018be Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sun, 23 Aug 2020 09:05:47 +0200 Subject: [PATCH] build: stop mentioning Slang in two ./configure messages Nobody ought to be using Slang, so don't give people the wrong impression by mentioning it (and even mentioning it *first*). --- configure.ac | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index 8d1aff4b..e9624e36 100644 --- a/configure.ac +++ b/configure.ac @@ -628,18 +628,16 @@ if test "x$enable_utf8" != xno && \ else if test "x$enable_utf8" = xyes; then AC_MSG_ERROR([ - *** UTF-8 support was requested, but insufficient UTF-8 support was - *** detected in your curses and/or C libraries. Please verify that - *** your Slang was built with UTF-8 support or your curses was built - *** with wide-character support, and that your C library was built + *** UTF-8 support was requested, but insufficient support was + *** detected in your curses and/or C libraries. Please verify + *** that both your curses library and your C library were built *** with wide-character support.]) elif test "x$enable_utf8" != xno; then AC_MSG_WARN([ - *** Insufficient UTF-8 support was detected in your curses and/or C - *** libraries. If you want UTF-8 support, please verify that your - *** Slang was built with UTF-8 support or your curses was built with - *** wide-character support, and that your C library was built with - *** wide-character support.]) + *** Insufficient UTF-8 support was detected in your curses + *** and/or C libraries. If you want UTF-8 support, please + *** verify that both your curses library and your C library + *** were built with wide-character support.]) fi fi