]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
fix bug #220, complain without-ssl.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Tue, 25 Nov 2008 08:11:46 +0000 (08:11 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Tue, 25 Nov 2008 08:11:46 +0000 (08:11 +0000)
git-svn-id: file:///svn/unbound/trunk@1375 be551aaa-1e26-0410-a405-d3ace91eadb9

configure
configure.ac
doc/Changelog

index cc833208e4e2f5aee80427a93a29b118b50860c7..cb93da9d56b1072098887cf92ebe1bf843b870dc 100755 (executable)
--- a/configure
+++ b/configure
@@ -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; }
index eff2011817be84f31e1fe13738930c15ffa66d74..71e72d66458c347bef4afcaaa861127cb1a1dd88 100644 (file)
@@ -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
index 0d37ce0ed65026f990058a758a61a13a619ab736..1ad6e708b97a520e3a5619bd60fad93636180381 100644 (file)
@@ -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.