Bitcoin setup is not successfull on a clean ubuntu system following the install instructions https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md
Expected behavior
I would expect that installation to complete and that my setup is able to build bitcoin
Actual behavior
Apparently ./configure
gave this error: “configure: error: libdb_cxx headers missing, Bitcoin Core requires this library for wallet functionality (–disable-wallet to disable wallet functionality)”. next make
does not work
0make
1make: *** No targets specified and no makefile found. Stop.
2**System information**
To reproduce
The bitcoin version this happens is b54666c849bad258d92d6d1e45a051d36055681e
**Fix ** there are many solutions specified in #2998 but for me the woking one was the comment #2998 (comment) from @bellaj
0sudo add-apt-repository ppa:bitcoin/bitcoin
1sudo apt-get update
2sudo apt-get install libdb4.8-dev libdb4.8++-dev
So I guess this could be added to the ubuntu section of https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md ?