From 09535842b93c6ba804fcbe2c012320418ab06fb1 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 29 Jul 2024 15:47:01 +0100 Subject: [PATCH] doc: remove --with-bignum from secp256k1 configure It was removed in https://github.com/bitcoin-core/secp256k1/pull/831, and results in: ```bash configure: WARNING: unrecognized options: --with-bignum ``` --- docs/secp256k1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/secp256k1.md b/docs/secp256k1.md index d4253adc6..b6190636b 100644 --- a/docs/secp256k1.md +++ b/docs/secp256k1.md @@ -6,7 +6,7 @@ git clone --depth 1 https://github.com/bitcoin-core/secp256k1.git cd secp256k1/ autoreconf -ivf -./configure --enable-static --disable-tests --disable-benchmark --with-bignum=no --disable-exhaustive-tests --enable-module-recovery --enable-module-schnorrsig --enable-experimental --enable-module-ecdh +./configure --enable-static --disable-tests --disable-benchmark --disable-exhaustive-tests --enable-module-recovery --enable-module-schnorrsig --enable-experimental --enable-module-ecdh make export SECP256K1_INCLUDE_PATH=$(realpath .) export LIBSECP256K1_A_PATH=$(realpath .libs/libsecp256k1.a)