Post
Topic
Board Announcements (Altcoins)
Re: [ANN] FoxCoin - A Fully dynamic Cyptocurrency [NOW ON 3 EXCHANGES!]
by
BitHost
on 27/01/2014, 22:14:39 UTC
plz document for all what you did to make it compile?

I did not save exact command log, but from what i remember:

DEBIAN

Quote
Linux srv2 2.6.32-042stab084.14 #1 SMP Mon Dec 16 18:16:56 MSK 2013 x86_64 GNU/Linux

Code:
sudo apt-get install build-essential libssl-dev libdb5.1++-dev libboost-all-dev libqrencode-dev libminiupnpc-dev
git clone https://github.com/CoinFox/FoxCoin
cd FoxCoin
chmod +x share/genbuild.sh
cd src/
mkdir obj

Now, before compiling i edited file bitcoinrpc.cpp and commented out most of the code around lines 2902 and 2920. Basically what i did there is remove code that tries to create IPV4 AND IPV6 sockets. My virtual server had no IPV6 and with this code the daemon was just crashing.

Code:
make -f makefile.unix USE_UPNP=0 USE_IPV6=0 USE_QRCODE=0

CENTOS

On CentOs it was quite complicated to install all needed libraries, i got to the point where i could actually compile the deamon, but could not run it because of the IPV6 thing and at this point i don't know if code stripping would have helped.