From 703d815ef8c1eb58cd655a74ebcb65ae4dccd26d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 24 Jul 2023 18:18:05 +0200 Subject: [PATCH] Make configure message for zlib consistent with the other ones All the other messages use "system $LIBRARY not found", and just zlib didn't use "system" for some reason -- add it now so that the messages are consistent when several of them are given. This is a purely cosmetic changes. --- configure | 6 +++--- configure.in | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 2f40c16c7d..a722db1047 100755 --- a/configure +++ b/configure @@ -25316,10 +25316,10 @@ fi if test "x$ZLIB_LINK" = "x" ; then if test "$wxUSE_ZLIB" = "sys" ; then - as_fn_error $? "zlib library not found or too old! Use --with-zlib=builtin to use built-in version" "$LINENO" 5 + as_fn_error $? "system zlib library not found or too old! Use --with-zlib=builtin to use built-in version" "$LINENO" 5 else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: zlib library not found or too old, will use built-in instead" >&5 -$as_echo "$as_me: WARNING: zlib library not found or too old, will use built-in instead" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: system zlib library not found or too old, will use built-in instead" >&5 +$as_echo "$as_me: WARNING: system zlib library not found or too old, will use built-in instead" >&2;} wxUSE_ZLIB=builtin fi else diff --git a/configure.in b/configure.in index 1612210670..0cdbaafebb 100644 --- a/configure.in +++ b/configure.in @@ -2235,9 +2235,9 @@ if test "$wxUSE_ZLIB" != "no" ; then if test "x$ZLIB_LINK" = "x" ; then if test "$wxUSE_ZLIB" = "sys" ; then - AC_MSG_ERROR([zlib library not found or too old! Use --with-zlib=builtin to use built-in version]) + AC_MSG_ERROR([system zlib library not found or too old! Use --with-zlib=builtin to use built-in version]) else - AC_MSG_WARN([zlib library not found or too old, will use built-in instead]) + AC_MSG_WARN([system zlib library not found or too old, will use built-in instead]) wxUSE_ZLIB=builtin fi else