(Using Autotools) I have downloaded the Bitcoin source from "Bitcoin Core Version 0.9.1" When I input the following command ./autogen.sh
it produces the following warning:
includes' is the old name for 'am_cppflags' (or '*_cppflags').
When I attempt ./configure
I get the following error message:
configure: error: found berkley DB other than 4.8, required for
portable wallets ( --with-incompatible-bdb to ignore).
And lastly, when I input make
I get the output of:
make: * No targets specified and no makefile found. Stop.
./autogen.sh
that might be a problem. (The commands you wrote above are to build bitcoin-qt) Make sure you have all the dependencies. You will also need to build berkley DB and a couple other things. The instructions are here : https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md Check through this, because it looks like a lot of things could break "Ubuntu 12.04 and later have packages for libdb5.1-dev and libdb5.1++-dev, but using these will break binary wallet compatibility, and is not recommended." Things like that. tl;dr Get ALL the dependencies. – No Time May 28 '14 at 23:29