mirror of https://github.com/getdnsapi/getdns.git
Fix configure runtime error.
Error was: checking for DSA_SIG_new... yes ../configure: line 13315: test: too many arguments
This commit is contained in:
parent
ff7c85ab20
commit
59e6ec80fe
|
@ -589,7 +589,7 @@ case "$enable_ed25519" in
|
|||
no)
|
||||
;;
|
||||
*)
|
||||
if test $USE_NSS = "no" -a $USE_NETTLE = "no"; then
|
||||
if test "$USE_NSS" = "no" -a "$USE_NETTLE" = "no"; then
|
||||
AC_CHECK_DECLS([NID_ED25519], [
|
||||
AC_DEFINE_UNQUOTED([USE_ED25519], [1], [Define this to enable ED25519 support.])
|
||||
use_ed25519="yes"
|
||||
|
|
Loading…
Reference in New Issue