code]
cd datacoin/src/madpool
protoc --proto_path=./ --cpp_out=./ protocol.proto
mv protocol.pb.cc protocol.pb.cpp
cd ../..
./autogen.sh && ./configure && make
When I compiled Datacoin with this simple protocol (right after git cloning) I received the following error:
configure: error: libdb_cxx headers missing, Datacoin Core requires this library for wallet functionality (--disable-wallet to disable wallet functionality)
Am I doing some simple stupid mistake?
-extro