I haven't compiled the latest wallet, but when I compiled the last time I had some dependencies to add:
sudo apt-get install libboost-all-dev
sudo apt-get install libdb++-dev
and some changes in the src tree, provided by onnz
mkdir -p src/obj/XtraBYtes
cd src/leveldb && make libleveldb.a libmemenv.a
I would recommend to borz to add this dir to the src tree and add the make instructions for the db to the makefile.unix
good luck
This was posted on v1.1.0.3:
sudo apt-get update
sudo apt-get install build-essential g++ python-dev autotools-dev libicu-dev build-essential libbz2-dev libboost-all-dev libdb5.3++
in case of error.
Also, this is part of the code in the compile-win.sh file:
cd ./src/leveldb
TARGET_OS=NATIVE_WINDOWS make CC=i686-w64-mingw32.static-gcc CXX=i686-w64-mingw32.static-g++ libleveldb.a libmemenv.a
cd ../..
Is this what you are referring to?