I have no idea, i took the code from this guys thread
Whoops its paraphrasing my post on the thread for some reason, this is the code
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb5.1+±dev build-essential libssl-dev libboost-all-dev libqrencode-dev libminiupnpc-dev qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev
Step 3. Delete datafeeds related code.
In Makefile just search for any dependency or target that has the phrase âdatafeedâ as part of the name and delete it.
The following files in src and src/qt must be modified:
init.cpp : delete lines with âcurlâ in them.
main.cpp : delete the four lines starting with "if (strDataFeedError != ââ)"
bitcoinrpc.cpp : delete all code related to âsetvoteâ âsetdatafeedâ and "getdatafeed"
net.cpp : delete the line "StartUpdateFromDataFeed();"
bitcoingui.cpp : delete code related to votePage and gotoVotePage
bitcoingui.h : delete code related to votePage and gotoVotePage
votepage.cpp : delete code mentioning "datafeed"
votepage.h : delete line "void on_dataFeedButton_clicked();"
walletmodel.cpp : delete code mentioning âdatafeedâ
Step 4. Compile a version that doesnât need the dependencies.
qmake "RELEASE=1"
make
This should make an executable called ânuâ which can be run in the
future with a fresh Tails. You should copy this somewhere, like a flash
drive at /media/nuflash. Later you can start it in a fresh Tails like:
/media/nuflash/nu -datadir=/media/nuflash/.nu -proxy=127.0.0.1:9050
Hope this helps someone. Iâm not sure what effect deleting the
datafeed related code has, but it is able to keep up with the block
chain and send transactions. Thatâs good enough for me.
Someone might advise that thereâs an easier way, but until then at least there is some way.