@@ -140,10 +140,10 @@ AC_ARG_ENABLE(examples,
140140 AS_HELP_STRING ( [ --enable-examples] ,[ compile the examples [ default=no] ] ) , [ ] ,
141141 [ SECP_SET_DEFAULT([ enable_examples] , [ no] , [ yes] )] )
142142
143- AC_ARG_ENABLE ( module_bulletproofs ,
144- AS_HELP_STRING ( [ --enable-module-bulletproofs ] ,[ enable Bulletproofs module (experimental)] ) ,
143+ AC_ARG_ENABLE ( module_bppp ,
144+ AS_HELP_STRING ( [ --enable-module-bppp ] ,[ enable Bulletproofs++ module (experimental)] ) ,
145145 [ ] ,
146- [ SECP_SET_DEFAULT([ enable_module_bulletproofs ] , [ no] , [ yes] )] )
146+ [ SECP_SET_DEFAULT([ enable_module_bppp ] , [ no] , [ yes] )] )
147147
148148AC_ARG_ENABLE ( module_ecdh ,
149149 AS_HELP_STRING ( [ --enable-module-ecdh] ,[ enable ECDH module [ default=no] ] ) , [ ] ,
@@ -422,9 +422,9 @@ if test x"$enable_module_rangeproof" = x"yes"; then
422422 AC_DEFINE ( ENABLE_MODULE_RANGEPROOF , 1 , [ Define this symbol to enable the Pedersen / zero knowledge range proof module] )
423423fi
424424
425- if test x"$enable_module_bulletproofs " = x"yes"; then
425+ if test x"$enable_module_bppp " = x"yes"; then
426426 enable_module_generator=yes
427- AC_DEFINE ( ENABLE_MODULE_BULLETPROOFS , 1 , [ Define this symbol to enable the Bulletproofs module] )
427+ AC_DEFINE ( ENABLE_MODULE_BPPP , 1 , [ Define this symbol to enable the Bulletproofs++ module] )
428428fi
429429
430430if test x"$enable_module_generator" = x"yes"; then
470470 # module (which automatically enables the module dependencies) we want to
471471 # print an error for the dependent module, not the module dependency. Hence,
472472 # we first test dependent modules.
473- if test x"$enable_module_bulletproofs " = x"yes"; then
474- AC_MSG_ERROR ( [ Bulletproofs module is experimental. Use --enable-experimental to allow.] )
473+ if test x"$enable_module_bppp " = x"yes"; then
474+ AC_MSG_ERROR ( [ Bulletproofs++ module is experimental. Use --enable-experimental to allow.] )
475475 fi
476476 if test x"$enable_module_whitelist" = x"yes"; then
477477 AC_MSG_ERROR ( [ Key whitelisting module is experimental. Use --enable-experimental to allow.] )
@@ -515,7 +515,7 @@ AM_CONDITIONAL([USE_TESTS], [test x"$enable_tests" != x"no"])
515515AM_CONDITIONAL([ USE_EXHAUSTIVE_TESTS] , [ test x"$enable_exhaustive_tests" != x"no"] )
516516AM_CONDITIONAL([ USE_EXAMPLES] , [ test x"$enable_examples" != x"no"] )
517517AM_CONDITIONAL([ USE_BENCHMARK] , [ test x"$enable_benchmark" = x"yes"] )
518- AM_CONDITIONAL([ ENABLE_MODULE_BULLETPROOFS ] , [ test x"$enable_module_bulletproofs " = x"yes"] )
518+ AM_CONDITIONAL([ ENABLE_MODULE_BPPP ] , [ test x"$enable_module_bppp " = x"yes"] )
519519AM_CONDITIONAL([ ENABLE_MODULE_ECDH] , [ test x"$enable_module_ecdh" = x"yes"] )
520520AM_CONDITIONAL([ ENABLE_MODULE_MUSIG] , [ test x"$enable_module_musig" = x"yes"] )
521521AM_CONDITIONAL([ ENABLE_MODULE_RECOVERY] , [ test x"$enable_module_recovery" = x"yes"] )
@@ -555,7 +555,7 @@ echo " module whitelist = $enable_module_whitelist"
555555echo " module musig = $enable_module_musig"
556556echo " module ecdsa-s2c = $enable_module_ecdsa_s2c"
557557echo " module ecdsa-adaptor = $enable_module_ecdsa_adaptor"
558- echo " module bulletproofs = $enable_module_bulletproofs "
558+ echo " module bppp = $enable_module_bppp "
559559echo
560560echo " asm = $set_asm"
561561echo " ecmult window size = $set_ecmult_window"
0 commit comments