- fix --enable-dsa to work, instead of copying ecdsa enable.

git-svn-id: file:///svn/unbound/trunk@3897 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2016-10-20 09:22:04 +00:00
parent 44ab21485d
commit 304f1bb457
3 changed files with 3 additions and 2 deletions

2
configure vendored
View File

@ -17930,7 +17930,7 @@ if test "${enable_dsa+set}" = set; then :
fi
use_dsa="no"
case "$enable_ecdsa" in
case "$enable_dsa" in
no)
;;
*)

View File

@ -867,7 +867,7 @@ esac
AC_ARG_ENABLE(dsa, AC_HELP_STRING([--disable-dsa], [Disable DSA support]))
use_dsa="no"
case "$enable_ecdsa" in
case "$enable_dsa" in
no)
;;
*)

View File

@ -1,6 +1,7 @@
20 October 2016: Wouter
- suppress compile warning in lex files.
- init lzt variable, for older gcc compiler warnings.
- fix --enable-dsa to work, instead of copying ecdsa enable.
19 October 2016: Wouter
- Fix #1130: whitespace in example.conf.in more consistent.