Post
Topic
Board Announcements (Altcoins)
Re: [ANN][CRT] Certurium || a digital asset engineered for the ages
by
chosenone123
on 14/11/2020, 11:54:28 UTC
Hey Vitimers, thank you for your patience. unfortunately, I still dont get it... the berkeley DB I install with the following commands:

It is from this tutorial: https://hackernoon.com/a-complete-beginners-guide-to-installing-a-bitcoin-full-node-on-linux-2018-edition-cb8e384479ea
Code:
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz;
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c;
tar -xvf db-4.8.30.NC.tar.gz;
cd db-4.8.30.NC/build_unix;
mkdir -p build;
BDB_PREFIX=$(pwd)/build;
../dist/configure --disable-shared --enable-cxx --with-pic --prefix=$BDB_PREFIX;
sudo make install;
cd ../..;

But then I get this error again:
Code:
checking for ::_wsystem... no
checking whether to build Bitcoin Core GUI... no
checking for Berkeley DB C++ headers... no
configure: error: libdb_cxx headers missing, Bitcoin Core requires this library for wallet functionality (--disable-wallet to disable wallet functionality)

Where am I dumbass failing??