@@ -131,11 +131,6 @@ AC_ARG_ENABLE(module_ecdh,
131
131
[ enable_module_ecdh=$enableval] ,
132
132
[ enable_module_ecdh=no] )
133
133
134
- AC_ARG_ENABLE ( module_schnorrsig ,
135
- AS_HELP_STRING ( [ --enable-module-schnorrsig] ,[ enable schnorrsig module (experimental)] ) ,
136
- [ enable_module_schnorrsig=$enableval] ,
137
- [ enable_module_schnorrsig=no] )
138
-
139
134
# AC_ARG_ENABLE(module_musig,
140
135
# AS_HELP_STRING([--enable-module-musig],[enable MuSig module (experimental)]),
141
136
# [enable_module_musig=$enableval],
@@ -464,10 +459,6 @@ if test x"$enable_module_ecdh" = x"yes"; then
464
459
AC_DEFINE ( ENABLE_MODULE_ECDH , 1 , [ Define this symbol to enable the ECDH module] )
465
460
fi
466
461
467
- if test x"$enable_module_schnorrsig" = x"yes"; then
468
- AC_DEFINE ( ENABLE_MODULE_SCHNORRSIG , 1 , [ Define this symbol to enable the schnorrsig module] )
469
- fi
470
-
471
462
# if test x"$enable_module_musig" = x"yes"; then
472
463
# AC_DEFINE(ENABLE_MODULE_MUSIG, 1, [Define this symbol to enable the MuSig module])
473
464
# fi
@@ -513,7 +504,6 @@ if test x"$enable_experimental" = x"yes"; then
513
504
AC_MSG_NOTICE ( [ Building range proof module: $enable_module_rangeproof] )
514
505
AC_MSG_NOTICE ( [ Building key whitelisting module: $enable_module_whitelist] )
515
506
AC_MSG_NOTICE ( [ Building surjection proof module: $enable_module_surjectionproof] )
516
- AC_MSG_NOTICE ( [ Building schnorrsig module: $enable_module_schnorrsig] )
517
507
# AC_MSG_NOTICE([Building MuSig module: $enable_module_musig])
518
508
AC_MSG_NOTICE ( [ ******] )
519
509
542
532
if test x"$enable_module_ecdh" = x"yes"; then
543
533
AC_MSG_ERROR ( [ ECDH module is experimental. Use --enable-experimental to allow.] )
544
534
fi
545
- if test x"$enable_module_schnorrsig" = x"yes"; then
546
- AC_MSG_ERROR ( [ schnorrsig module is experimental. Use --enable-experimental to allow.] )
547
- fi
548
535
# if test x"$enable_module_musig" = x"yes"; then
549
536
# AC_MSG_ERROR([MuSig module is experimental. Use --enable-experimental to allow.])
550
537
# fi
@@ -577,7 +564,6 @@ AM_CONDITIONAL([USE_EXHAUSTIVE_TESTS], [test x"$use_exhaustive_tests" != x"no"])
577
564
AM_CONDITIONAL([ USE_BENCHMARK] , [ test x"$use_benchmark" = x"yes"] )
578
565
AM_CONDITIONAL([ USE_ECMULT_STATIC_PRECOMPUTATION] , [ test x"$set_precomp" = x"yes"] )
579
566
AM_CONDITIONAL([ ENABLE_MODULE_ECDH] , [ test x"$enable_module_ecdh" = x"yes"] )
580
- AM_CONDITIONAL([ ENABLE_MODULE_SCHNORRSIG] , [ test x"$enable_module_schnorrsig" = x"yes"] )
581
567
# AM_CONDITIONAL([ENABLE_MODULE_MUSIG], [test x"$enable_module_musig" = x"yes"])
582
568
AM_CONDITIONAL([ ENABLE_MODULE_RECOVERY] , [ test x"$enable_module_recovery" = x"yes"] )
583
569
AM_CONDITIONAL([ ENABLE_MODULE_GENERATOR] , [ test x"$enable_module_generator" = x"yes"] )
@@ -604,7 +590,6 @@ echo " with benchmarks = $use_benchmark"
604
590
echo " with coverage = $enable_coverage"
605
591
echo " module ecdh = $enable_module_ecdh"
606
592
echo " module recovery = $enable_module_recovery"
607
- echo " module schnorrsig = $enable_module_schnorrsig"
608
593
echo
609
594
echo " asm = $set_asm"
610
595
echo " bignum = $set_bignum"
0 commit comments