mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-01 19:29:27 -05:00
fix bug #220, complain without-ssl.
git-svn-id: file:///svn/unbound/trunk@1375 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
aa0f26e3fa
commit
b1ed30d5f4
3 changed files with 11 additions and 0 deletions
5
configure
vendored
5
configure
vendored
|
|
@ -20988,6 +20988,11 @@ else
|
|||
|
||||
fi
|
||||
|
||||
if test x_$withval = x_no; then
|
||||
{ { echo "$as_me:$LINENO: error: Need SSL library to do digital signature cryptography" >&5
|
||||
echo "$as_me: error: Need SSL library to do digital signature cryptography" >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
fi
|
||||
if test x_$withval != x_no; then
|
||||
{ echo "$as_me:$LINENO: checking for SSL" >&5
|
||||
echo $ECHO_N "checking for SSL... $ECHO_C" >&6; }
|
||||
|
|
|
|||
|
|
@ -513,6 +513,9 @@ AC_ARG_WITH(ssl, AC_HELP_STRING([--with-ssl=pathname],
|
|||
],[
|
||||
withval="yes"
|
||||
])
|
||||
if test x_$withval = x_no; then
|
||||
AC_MSG_ERROR([Need SSL library to do digital signature cryptography])
|
||||
fi
|
||||
if test x_$withval != x_no; then
|
||||
AC_MSG_CHECKING(for SSL)
|
||||
if test x_$withval = x_ -o x_$withval = x_yes; then
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
25 November 2008: Wouter
|
||||
- configure complains when --without-ssl is given (bug #220).
|
||||
|
||||
24 November 2008: Wouter
|
||||
- document that the user of the server daemon needs read privileges
|
||||
on the keys and certificates generated by unbound-control-setup.
|
||||
|
|
|
|||
Loading…
Reference in a new issue