mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-04 10:30:47 +00:00
Fix problem in tls config check ... should have been warning rather than error.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25930 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3a1116f6f0
commit
b204d69fef
2 changed files with 3 additions and 4 deletions
5
configure
vendored
5
configure
vendored
|
@ -17918,9 +17918,8 @@ _ACEOF
|
|||
echo "Doing so will disable SSL support in the NSStream class."
|
||||
echo "If you really want to build -base without TLS support,"
|
||||
echo "add --disable-tls to the configure arguments."
|
||||
{ { echo "$as_me:$LINENO: error: Missing support for TLS functionality." >&5
|
||||
echo "$as_me: error: Missing support for TLS functionality." >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
{ echo "$as_me:$LINENO: WARNING: Missing support for TLS functionality." >&5
|
||||
echo "$as_me: WARNING: Missing support for TLS functionality." >&2;}
|
||||
fi
|
||||
else
|
||||
{ echo "$as_me:$LINENO: WARNING: Disabled support for TLS funtionality." >&5
|
||||
|
|
|
@ -2160,7 +2160,7 @@ if test $enable_tls = yes; then
|
|||
echo "Doing so will disable SSL support in the NSStream class."
|
||||
echo "If you really want to build -base without TLS support,"
|
||||
echo "add --disable-tls to the configure arguments."
|
||||
AC_MSG_ERROR([Missing support for TLS functionality.])
|
||||
AC_MSG_WARN([Missing support for TLS functionality.])
|
||||
fi
|
||||
else
|
||||
AC_MSG_WARN([Disabled support for TLS funtionality.])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue