Fix configure runtime error.

Error was:
checking for DSA_SIG_new... yes
../configure: line 13315: test: too many arguments
This commit is contained in:
Jim Hague 2017-10-05 15:04:40 +01:00
parent ff7c85ab20
commit 59e6ec80fe
1 changed files with 1 additions and 1 deletions

View File

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