Skip to content

Commit

Permalink
Correct arg order for ED255519 AC_LINK_IFELSE test.
Browse files Browse the repository at this point in the history
  • Loading branch information
daztucker committed Oct 12, 2023
1 parent c616e64 commit 971e0cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3155,13 +3155,13 @@ if test "x$openssl" = "xyes" ; then
exit(EVP_PKEY_new_raw_private_key(EVP_PKEY_ED25519,
buf, sizeof(buf)) == NULL);
]])],
[
AC_MSG_RESULT([no])
],
[
AC_MSG_RESULT([yes])
AC_DEFINE([OPENSSL_HAS_ED25519], [1],
[libcrypto has ed25519 support])
],
[
AC_MSG_RESULT([no])
]
)
fi
Expand Down

0 comments on commit 971e0cf

Please sign in to comment.