aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2020-06-12 15:50:30 +0800
committerfanquake <fanquake@gmail.com>2020-06-12 15:54:00 +0800
commitc4ffcf07af19cd0c600b11dabd94e7e9d31ad072 (patch)
treec17531739efe8cd6a785f24ce11751f56eaad379 /configure.ac
parentb33136b6ba9887f7db651c4c5264ca7f2f601df7 (diff)
downloadbitcoin-c4ffcf07af19cd0c600b11dabd94e7e9d31ad072.tar.xz
build: remove BIP70 configure option
This was left in after #17165, so that anyone who had been compiling with (already disabled by default) BIP70 would realise that support had been completely removed in 0.20.0. However we should be able to remove it for 0.21.0.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 0 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 3bfbe2e7b0..b1c3472103 100644
--- a/configure.ac
+++ b/configure.ac
@@ -232,16 +232,6 @@ AC_ARG_ENABLE([zmq],
[use_zmq=$enableval],
[use_zmq=yes])
-AC_ARG_ENABLE([bip70],
- [AS_HELP_STRING([--enable-bip70],
- [BIP70 (payment protocol) support in the GUI (no longer supported)])],
- [enable_bip70=$enableval],
- [enable_bip70=no])
-
-if test x$enable_bip70 != xno; then
- AC_MSG_ERROR([BIP70 is no longer supported!])
-fi
-
AC_ARG_WITH([libmultiprocess],
[AS_HELP_STRING([--with-libmultiprocess=yes|no|auto],
[Build with libmultiprocess library. (default: auto, i.e. detect with pkg-config)])],