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:
parent
f03ea82be8
commit
703d815ef8
2 changed files with 5 additions and 5 deletions
6
configure
vendored
6
configure
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue