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.
This commit is contained in:
Vadim Zeitlin 2023-07-24 18:18:05 +02:00
parent f03ea82be8
commit 703d815ef8
2 changed files with 5 additions and 5 deletions

6
configure vendored
View file

@ -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