File tree Expand file tree Collapse file tree 6 files changed +0
-99
lines changed Expand file tree Collapse file tree 6 files changed +0
-99
lines changed Original file line number Diff line number Diff line change @@ -121,11 +121,6 @@ option(REDUCE_EXPORTS "Attempt to reduce exported symbols in the resulting execu
121
121
option (WERROR "Treat compiler warnings as errors." OFF )
122
122
option (WITH_CCACHE "Attempt to use ccache for compiling." ON )
123
123
124
- option (WITH_MINIUPNPC "Enable UPnP." OFF )
125
- if (WITH_MINIUPNPC )
126
- find_package (MiniUPnPc MODULE REQUIRED )
127
- endif ()
128
-
129
124
option (WITH_ZMQ "Enable ZMQ notifications." OFF )
130
125
if (WITH_ZMQ )
131
126
if (VCPKG_TARGET_TRIPLET )
@@ -234,7 +229,6 @@ if(BUILD_FOR_FUZZING)
234
229
set (BUILD_WALLET_TOOL OFF )
235
230
set (BUILD_GUI OFF )
236
231
set (ENABLE_EXTERNAL_SIGNER OFF )
237
- set (WITH_MINIUPNPC OFF )
238
232
set (WITH_ZMQ OFF )
239
233
set (BUILD_TESTS OFF )
240
234
set (BUILD_GUI_TESTS OFF )
@@ -612,7 +606,6 @@ if(ENABLE_WALLET)
612
606
message (" - legacy wallets (Berkeley DB) ..... ${WITH_BDB} " )
613
607
endif ()
614
608
message (" external signer ..................... ${ENABLE_EXTERNAL_SIGNER} " )
615
- message (" port mapping using UPnP ............. ${WITH_MINIUPNPC} " )
616
609
message (" ZeroMQ .............................. ${WITH_ZMQ} " )
617
610
message (" USDT tracing ........................ ${WITH_USDT} " )
618
611
message (" QR code (GUI) ....................... ${WITH_QRENCODE} " )
Original file line number Diff line number Diff line change 84
84
"ENABLE_WALLET" : " ON" ,
85
85
"WARN_INCOMPATIBLE_BDB" : " OFF" ,
86
86
"WITH_BDB" : " ON" ,
87
- "WITH_MINIUPNPC" : " ON" ,
88
87
"WITH_MULTIPROCESS" : " ON" ,
89
88
"WITH_QRENCODE" : " ON" ,
90
89
"WITH_SQLITE" : " ON" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -294,7 +294,6 @@ target_link_libraries(bitcoin_node
294
294
Boost::headers
295
295
$< TARGET_NAME_IF_EXISTS:libevent::libevent>
296
296
$< TARGET_NAME_IF_EXISTS:libevent::pthreads>
297
- $< TARGET_NAME_IF_EXISTS:MiniUPnPc::MiniUPnPc>
298
297
$< TARGET_NAME_IF_EXISTS:bitcoin_zmq>
299
298
$< TARGET_NAME_IF_EXISTS:USDT::headers>
300
299
)
Original file line number Diff line number Diff line change @@ -133,7 +133,6 @@ target_link_libraries(bitcoinqt
133
133
bitcoin_cli
134
134
leveldb
135
135
Boost::headers
136
- $< TARGET_NAME_IF_EXISTS:MiniUPnPc::MiniUPnPc>
137
136
$< TARGET_NAME_IF_EXISTS:PkgConfig::libqrencode>
138
137
$< $< PLATFORM_ID:Darwin> :-framework\ AppKit>
139
138
$< $< CXX_COMPILER_ID:MSVC> :shlwapi>
Original file line number Diff line number Diff line change 13
13
],
14
14
"default-features" : [
15
15
" wallet" ,
16
- " miniupnpc" ,
17
16
" zeromq" ,
18
17
" tests" ,
19
18
" qt5"
31
30
"description" : " Enable Berkeley DB wallet support" ,
32
31
"dependencies" : [ " berkeleydb" ]
33
32
},
34
- "miniupnpc" : {
35
- "description" : " Enable UPnP" ,
36
- "dependencies" : [ " miniupnpc" ]
37
- },
38
33
"zeromq" : {
39
34
"description" : " Enable ZMQ notifications" ,
40
35
"dependencies" : [ " zeromq" ]
You can’t perform that action at this time.
0 commit comments