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
make
make: *** No targets specified and no makefile found. Stop.
**System information**
To reproduce
<!-- What type of machine are you observing the error on (OS/CPU and disk type)? -->
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
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo 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 ?