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:
Richard Frith-MacDonald 2008-01-10 19:59:28 +00:00
parent 3a1116f6f0
commit b204d69fef
2 changed files with 3 additions and 4 deletions

5
configure vendored
View file

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

View file

@ -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.])