navcoin / navcoin-dev-tools

Tools to help you get up and running
MIT License
0 stars 4 forks source link

Please add missing lib for Ubuntu 18.04 #6

Open skironDotNet opened 2 years ago

skironDotNet commented 2 years ago

When trying to build navcoin-core ./configure (to be exact) I was getting this error:

checking for Berkeley DB C++ headers... no
configure: error: libdb_cxx headers missing, Navcoin Core requires this library for wallet functionality (--disable-wallet to disable wallet functionality)

needed this lib to make it work sudo apt-get install -y libdb5.3++-dev

So basically on Ubuntu 18.04 this lib was present after running your script libdb5.3++ but also need libdb5.3++-dev

mxaddict commented 2 years ago

@skironDotNet libdb is usually build from the depends dir, if you install libdb from ubuntu, you would be using system version, but should still work.