Skip to content

Commit 70a7aa7

Browse files
Enable non-experimental modules by default
1 parent 9526874 commit 70a7aa7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

configure.ac

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,14 @@ AC_ARG_ENABLE(ecmult_static_precomputation,
131131
[use_ecmult_static_precomputation=auto])
132132

133133
AC_ARG_ENABLE(module_ecdh,
134-
AS_HELP_STRING([--enable-module-ecdh],[enable ECDH shared secret computation]),
134+
AS_HELP_STRING([--enable-module-ecdh],[enable ECDH shared secret computation [default=yes]]),
135135
[enable_module_ecdh=$enableval],
136-
[enable_module_ecdh=no])
136+
[enable_module_ecdh=yes)
137137
138138
AC_ARG_ENABLE(module_recovery,
139-
AS_HELP_STRING([--enable-module-recovery],[enable ECDSA pubkey recovery module [default=no]]),
139+
AS_HELP_STRING([--enable-module-recovery],[enable ECDSA pubkey recovery module [default=yes]]),
140140
[enable_module_recovery=$enableval],
141-
[enable_module_recovery=no])
141+
[enable_module_recovery=yes])
142142
143143
AC_ARG_ENABLE(module_extrakeys,
144144
AS_HELP_STRING([--enable-module-extrakeys],[enable extrakeys module (experimental)]),

0 commit comments

Comments
 (0)