Skip to content

Commit

Permalink
Enable non-experimental modules by default
Browse files Browse the repository at this point in the history
  • Loading branch information
real-or-random committed Oct 19, 2021
1 parent 9526874 commit 6ec209f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@ AC_ARG_ENABLE(ecmult_static_precomputation,
[use_ecmult_static_precomputation=auto])

AC_ARG_ENABLE(module_ecdh,
AS_HELP_STRING([--enable-module-ecdh],[enable ECDH shared secret computation]),
AS_HELP_STRING([--enable-module-ecdh],[enable ECDH shared secret computation [default=yes]]),
[enable_module_ecdh=$enableval],
[enable_module_ecdh=no])
[enable_module_ecdh=yes])

AC_ARG_ENABLE(module_recovery,
AS_HELP_STRING([--enable-module-recovery],[enable ECDSA pubkey recovery module [default=no]]),
AS_HELP_STRING([--enable-module-recovery],[enable ECDSA pubkey recovery module [default=yes]]),
[enable_module_recovery=$enableval],
[enable_module_recovery=no])
[enable_module_recovery=yes])

AC_ARG_ENABLE(module_extrakeys,
AS_HELP_STRING([--enable-module-extrakeys],[enable extrakeys module (experimental)]),
Expand Down

0 comments on commit 6ec209f

Please sign in to comment.