aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-03-27 09:06:38 +0800
committerfanquake <fanquake@gmail.com>2021-03-27 09:06:53 +0800
commite658b0e49bee257e197dd8ca37ee3ffa73092d92 (patch)
tree53c31b7f8fd2b33490cb8fca315f31ea395c639f /configure.ac
parent19e3e654293858141f39eef8fdae0badd224090f (diff)
parent0eabb2abede1230edcc0d7b660d9635135f0b4c1 (diff)
downloadbitcoin-e658b0e49bee257e197dd8ca37ee3ffa73092d92.tar.xz
Merge #21505: build: Remove unused header from the build system
0eabb2abede1230edcc0d7b660d9635135f0b4c1 build: Remove unused header from the build system (Hennadii Stepanov) Pull request description: The only `#include <miniupnpc/miniwget.h>` was removed in #16659. ACKs for top commit: practicalswift: cr ACK 0eabb2abede1230edcc0d7b660d9635135f0b4c1 fanquake: ACK 0eabb2abede1230edcc0d7b660d9635135f0b4c1 Tree-SHA512: 630da03875c851e80286561eae0f966c89624cbb17b90f70e2bec9a69146e79d088fc176e07a4906915770ac1cdb11341a7a431ea7cf6a59d2816e927486f335
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3de60cd6d4..9ac2643374 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1366,7 +1366,7 @@ fi
dnl Check for libminiupnpc (optional)
if test x$use_upnp != xno; then
AC_CHECK_HEADERS(
- [miniupnpc/miniwget.h miniupnpc/miniupnpc.h miniupnpc/upnpcommands.h miniupnpc/upnperrors.h],
+ [miniupnpc/miniupnpc.h miniupnpc/upnpcommands.h miniupnpc/upnperrors.h],
[AC_CHECK_LIB([miniupnpc], [upnpDiscover], [MINIUPNPC_LIBS=-lminiupnpc], [have_miniupnpc=no])],
[have_miniupnpc=no]
)