aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2023-08-07 18:55:17 +0200
committerfanquake <fanquake@gmail.com>2023-08-07 18:55:43 +0200
commit064919e00da2d93faa5cf1b92c37634f9bc641af (patch)
tree8d8a8b49d6f43261c701ea41a8c10534379844c3
parent624333455a5745a7f184d0df531dc348d0ac48dd (diff)
parent11a499eb4d57f2c5eabd7955bcc7e419364b3194 (diff)
Merge bitcoin/bitcoin#28231: doc: remove Fedora libdb4-*-devel install docs
11a499eb4d57f2c5eabd7955bcc7e419364b3194 doc: remove Fedora libdb4-*-devel install docs (fanquake) Pull request description: These are no-longer installable on any recent Fedora (last working version was 32). Remove the install instructions, and consolidate this section to be the same as the Ubuntu & Debian BDB install instructions. ACKs for top commit: MarcoFalke: lgtm ACK 11a499eb4d57f2c5eabd7955bcc7e419364b3194 Tree-SHA512: 11e3c92d6dcf475a6f5529a2e41dc9f79eeae8f8d3600087ce5ae083264f999782a2c04a4c4c70073e96d4053daa23037a344224197ee5f15a3d635172c201e2
-rw-r--r--doc/build-unix.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md
index 848dd5f71a..bf367fc421 100644
--- a/doc/build-unix.md
+++ b/doc/build-unix.md
@@ -55,7 +55,7 @@ SQLite is required for the descriptor wallet:
sudo apt install libsqlite3-dev
Berkeley DB is only required for the legacy wallet. Ubuntu and Debian have their own `libdb-dev` and `libdb++-dev` packages,
-but these will install Berkeley DB 5.1 or later. This will break binary wallet compatibility with the distributed
+but these will install Berkeley DB 5.3 or later. This will break binary wallet compatibility with the distributed
executables, which are based on BerkeleyDB 4.8. If you do not care about wallet compatibility, pass
`--with-incompatible-bdb` to configure. Otherwise, you can build Berkeley DB [yourself](#berkeley-db).
@@ -111,11 +111,7 @@ SQLite is required for the descriptor wallet:
sudo dnf install sqlite-devel
-Berkeley DB is required for the legacy wallet:
-
- sudo dnf install libdb4-devel libdb4-cxx-devel
-
-Berkeley DB is only required for the legacy wallet. Newer Fedora releases have only `libdb-devel` and `libdb-cxx-devel` packages, but these will install
+Berkeley DB is only required for the legacy wallet. Fedora releases have only `libdb-devel` and `libdb-cxx-devel` packages, but these will install
Berkeley DB 5.3 or later. This will break binary wallet compatibility with the distributed executables, which
are based on Berkeley DB 4.8. If you do not care about wallet compatibility,
pass `--with-incompatible-bdb` to configure. Otherwise, you can build Berkeley DB [yourself](#berkeley-db).