File tree Expand file tree Collapse file tree 5 files changed +1
-44
lines changed Expand file tree Collapse file tree 5 files changed +1
-44
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_NATPMP "Enable NAT-PMP." OFF )
125
- if (WITH_NATPMP )
126
- find_package (NATPMP MODULE REQUIRED )
127
- endif ()
128
-
129
124
option (WITH_MINIUPNPC "Enable UPnP." OFF )
130
125
if (WITH_MINIUPNPC )
131
126
find_package (MiniUPnPc MODULE REQUIRED )
@@ -239,7 +234,6 @@ if(BUILD_FOR_FUZZING)
239
234
set (BUILD_WALLET_TOOL OFF )
240
235
set (BUILD_GUI OFF )
241
236
set (ENABLE_EXTERNAL_SIGNER OFF )
242
- set (WITH_NATPMP OFF )
243
237
set (WITH_MINIUPNPC OFF )
244
238
set (WITH_ZMQ OFF )
245
239
set (BUILD_TESTS OFF )
@@ -621,9 +615,7 @@ if(ENABLE_WALLET)
621
615
message (" - legacy wallets (Berkeley DB) ..... ${WITH_BDB} " )
622
616
endif ()
623
617
message (" external signer ..................... ${ENABLE_EXTERNAL_SIGNER} " )
624
- message (" port mapping:" )
625
- message (" - using NAT-PMP .................... ${WITH_NATPMP} " )
626
- message (" - using UPnP ....................... ${WITH_MINIUPNPC} " )
618
+ message (" port mapping using UPnP ............. ${WITH_MINIUPNPC} " )
627
619
message (" ZeroMQ .............................. ${WITH_ZMQ} " )
628
620
message (" USDT tracing ........................ ${WITH_USDT} " )
629
621
message (" QR code (GUI) ....................... ${WITH_QRENCODE} " )
Original file line number Diff line number Diff line change 86
86
"WITH_BDB" : " ON" ,
87
87
"WITH_MINIUPNPC" : " ON" ,
88
88
"WITH_MULTIPROCESS" : " ON" ,
89
- "WITH_NATPMP" : " ON" ,
90
89
"WITH_QRENCODE" : " ON" ,
91
90
"WITH_SQLITE" : " ON" ,
92
91
"WITH_USDT" : " ON" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -292,7 +292,6 @@ target_link_libraries(bitcoin_node
292
292
Boost::headers
293
293
$< TARGET_NAME_IF_EXISTS:libevent::libevent>
294
294
$< TARGET_NAME_IF_EXISTS:libevent::pthreads>
295
- $< TARGET_NAME_IF_EXISTS:NATPMP::NATPMP>
296
295
$< TARGET_NAME_IF_EXISTS:MiniUPnPc::MiniUPnPc>
297
296
$< TARGET_NAME_IF_EXISTS:bitcoin_zmq>
298
297
$< TARGET_NAME_IF_EXISTS:USDT::headers>
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:NATPMP::NATPMP>
137
136
$< TARGET_NAME_IF_EXISTS:MiniUPnPc::MiniUPnPc>
138
137
$< TARGET_NAME_IF_EXISTS:PkgConfig::libqrencode>
139
138
$< $< PLATFORM_ID:Darwin> :-framework\ AppKit>
You can’t perform that action at this time.
0 commit comments