diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2023-04-04 17:13:37 +0000 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2023-04-04 17:13:40 +0000 |
commit | 9fbc5fcd28eeefd3ad1932a2d94e5558deeb16d7 (patch) | |
tree | 274783eb2513d2010359c7d417b64cec45153f22 | |
parent | 49b87bfe7e2799d25ce709123ecafa872b36e87a (diff) |
build: remove ancient unused define
The generic define was removed in upstream miniupnpc in 2014:
https://github.com/miniupnp/miniupnp/commit/f6774e33169b3101c3a242984510c9b6da033e26
Noticed while reviewing hebasto's new CMake buildsystem:
https://github.com/hebasto/bitcoin/pull/12#discussion_r1156267350
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cbe3dbcf19..5803876a1b 100644 --- a/configure.ac +++ b/configure.ac @@ -1767,7 +1767,7 @@ else use_upnp=yes AC_DEFINE([USE_UPNP], [1], [Define to 1 if UPnP support should be compiled in.]) if test "$TARGET_OS" = "windows"; then - MINIUPNPC_CPPFLAGS="$MINIUPNPC_CPPFLAGS -DSTATICLIB -DMINIUPNP_STATICLIB" + MINIUPNPC_CPPFLAGS="$MINIUPNPC_CPPFLAGS -DMINIUPNP_STATICLIB" fi else AC_MSG_RESULT([no]) |