are you too stupid to follow compile instructions? you can even copy paste the commands...
Mate the instructions provided by over half the wallets I've managed to compile haven't worked. Wrong or missing dependencies, old makefiles etc. It SHOULD be a few copy/paste ops but it rarely is.
Here's how I got anoncoin-qt wallet working last night on Xubuntu 13.10 if this helps anyone:
apt-get install all the dependencies in the readme-qt.rst EXCEPT libdb++-dev, as this installs the wrong version for recent ubuntu based distros. If you've already installed it then apt-get remove it.
So:
sudo apt-get install libqtgui4 qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev git
Then get the right db:
(echo deb http://de.archive.ubuntu.com/ubuntu/ lucid main restricted universe multiverse; echo deb http://de.archive.ubuntu.com/ubuntu/ lucid-updates main restricted universe multiverse; echo deb http://security.ubuntu.com/ubuntu lucid-security main restricted universe multiverse) | sudo sh -c 'cat >>/etc/apt/sources.list'
sudo apt-get update
sudo apt-get install libdb4.8++
Then get i2p:
sudo apt-add-repository ppa:i2p-maintainers/i2p
sudo apt-get update
sudo apt-get install i2p
Then rebuild the i2p makefile: (you might not need to do this if you've build anoncoind already)
cd i2psam
make -f makefile.unix
Then run qmake then make in the top level directory inside anoncoin-master folder. If you get NO TARGET error then you've probably got qt5 installed, run qmake-qt4 instead.
Hopefully I haven't forfotten anything!
Wallet fires up and syncs but I haven't mined anything to test it with yet or buggered about with Tor etc.