Enable Schnorrsig module in wrapper
The extrakeys module is a dependency for Schnorrsig, so that's enabled as well.
This commit is contained in:
parent
4c41c5029f
commit
445963cf46
|
@ -5,7 +5,7 @@ set -e
|
||||||
THIS_DIR=$(dirname "$0")
|
THIS_DIR=$(dirname "$0")
|
||||||
cd $THIS_DIR/secp256k1
|
cd $THIS_DIR/secp256k1
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
./configure --enable-module-ecdh --enable-module-recovery --enable-experimental
|
./configure --enable-module-ecdh --enable-module-recovery --enable-module-extrakeys --enable-module-schnorrsig --enable-experimental
|
||||||
make src/ecmult_static_context.h
|
make src/ecmult_static_context.h
|
||||||
|
|
||||||
cd -
|
cd -
|
||||||
|
|
|
@ -18,13 +18,13 @@
|
||||||
#define ENABLE_MODULE_ECDH 1
|
#define ENABLE_MODULE_ECDH 1
|
||||||
|
|
||||||
/* Define this symbol to enable the extrakeys module */
|
/* Define this symbol to enable the extrakeys module */
|
||||||
/* #undef ENABLE_MODULE_EXTRAKEYS */
|
#define ENABLE_MODULE_EXTRAKEYS 1
|
||||||
|
|
||||||
/* Define this symbol to enable the ECDSA pubkey recovery module */
|
/* Define this symbol to enable the ECDSA pubkey recovery module */
|
||||||
#define ENABLE_MODULE_RECOVERY 1
|
#define ENABLE_MODULE_RECOVERY 1
|
||||||
|
|
||||||
/* Define this symbol to enable the schnorrsig module */
|
/* Define this symbol to enable the schnorrsig module */
|
||||||
/* #undef ENABLE_MODULE_SCHNORRSIG */
|
#define ENABLE_MODULE_SCHNORRSIG 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||||
#define HAVE_DLFCN_H 1
|
#define HAVE_DLFCN_H 1
|
||||||
|
|
Loading…
Reference in New Issue