Skip to content

Commit 953533d

Browse files
committed
doc: remove mentions of UPnP
1 parent 94ad614 commit 953533d

File tree

6 files changed

+4
-30
lines changed

6 files changed

+4
-30
lines changed

doc/build-freebsd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ from ports. However, you can build DB 4.8 yourself [using depends](/depends).
4242

4343
```bash
4444
pkg install gmake
45-
gmake -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_UPNP=1 NO_ZMQ=1 NO_USDT=1
45+
gmake -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_ZMQ=1 NO_USDT=1
4646
```
4747

4848
When the build is complete, the Berkeley DB installation location will be displayed:

doc/build-openbsd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ from ports. However you can build it yourself, [using depends](/depends).
4444
Refer to [depends/README.md](/depends/README.md) for detailed instructions.
4545

4646
```bash
47-
gmake -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_UPNP=1 NO_ZMQ=1 NO_USDT=1
47+
gmake -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_ZMQ=1 NO_USDT=1
4848
...
4949
to: /path/to/bitcoin/depends/*-unknown-openbsd*
5050
```

doc/build-osx.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -110,19 +110,6 @@ Otherwise, if you don't need QR encoding support, you can pass `-DWITH_QRENCODE=
110110

111111
---
112112

113-
#### Port Mapping Dependencies
114-
115-
###### miniupnpc
116-
117-
miniupnpc may be used for UPnP port mapping.
118-
Skip if you do not need this functionality.
119-
120-
``` bash
121-
brew install miniupnpc
122-
```
123-
124-
---
125-
126113
#### ZMQ Dependencies
127114

128115
Support for ZMQ notifications requires the following dependency.

doc/build-unix.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ executables, which are based on BerkeleyDB 4.8. Otherwise, you can build Berkele
6060

6161
To build Bitcoin Core without wallet, see [*Disable-wallet mode*](#disable-wallet-mode)
6262

63-
Optional port mapping library (see: `-DWITH_MINIUPNPC=ON`):
64-
65-
sudo apt install libminiupnpc-dev
66-
6763
ZMQ dependencies (provides ZMQ API):
6864

6965
sudo apt-get install libzmq3-dev
@@ -112,10 +108,6 @@ are based on Berkeley DB 4.8. Otherwise, you can build Berkeley DB [yourself](#b
112108

113109
To build Bitcoin Core without wallet, see [*Disable-wallet mode*](#disable-wallet-mode)
114110

115-
Optional port mapping library (see: `-DWITH_MINIUPNPC=ON`):
116-
117-
sudo dnf install miniupnpc-devel
118-
119111
ZMQ dependencies (provides ZMQ API):
120112

121113
sudo dnf install zeromq-devel
@@ -153,7 +145,7 @@ The legacy wallet uses Berkeley DB. To ensure backwards compatibility it is
153145
recommended to use Berkeley DB 4.8. If you have to build it yourself, and don't
154146
want to use any other libraries built in depends, you can do:
155147
```bash
156-
make -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_UPNP=1 NO_ZMQ=1 NO_USDT=1
148+
make -C depends NO_BOOST=1 NO_LIBEVENT=1 NO_QT=1 NO_SQLITE=1 NO_ZMQ=1 NO_USDT=1
157149
...
158150
to: /path/to/bitcoin/depends/x86_64-pc-linux-gnu
159151
```

doc/dependencies.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ You can find installation instructions in the `build-*.md` file for your platfor
3131
| [qrencode](../depends/packages/qrencode.mk) | [link](https://fukuchi.org/works/qrencode/) | [4.1.1](https://github.com/bitcoin/bitcoin/pull/27312) | | No |
3232
| [Qt](../depends/packages/qt.mk) | [link](https://download.qt.io/official_releases/qt/) | [5.15.14](https://github.com/bitcoin/bitcoin/pull/30198) | [5.11.3](https://github.com/bitcoin/bitcoin/pull/24132) | No |
3333

34-
### Networking
35-
| Dependency | Releases | Version used | Minimum required | Runtime |
36-
| --- | --- | --- | --- | --- |
37-
| [MiniUPnPc](../depends/packages/miniupnpc.mk) | [link](https://miniupnp.tuxfamily.org/) | [2.2.7](https://github.com/bitcoin/bitcoin/pull/29707) | 2.1 | No |
38-
3934
### Notifications
4035
| Dependency | Releases | Version used | Minimum required | Runtime |
4136
| --- | --- | --- | --- | --- |

doc/tor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ as well, use `discover` instead:
200200

201201
./bitcoind ... -discover
202202

203-
and open port 8333 on your firewall (or use port mapping, i.e., `-upnp` or `-natpmp`).
203+
and open port 8333 on your firewall (or use port mapping, i.e., `-natpmp`).
204204

205205
If you only want to use Tor to reach .onion addresses, but not use it as a proxy
206206
for normal IPv4/IPv6 communication, use:

0 commit comments

Comments
 (0)