-snip-
Hmm.. is that when compiling slingd? I compiled it and did not have an error.
Which commands did you use.. are you compiling with UPNP ?
Yes , it was when compiling slingd. TBH , I used first commands at the post below
-snip-
This worked like a charm for me and i am a newbe to Linux:)
git clone
https://bitbucket.org/slingrepo/slingcd sling
cd secp256k1
./autogen.sh
./configure
make
make install
cp /usr/local/lib/libsecp256k1.* /usr/lib
cd ..
cd src
mkdir obj
cp crypto obj/crypto -rR
make -f makefile.unix
cp slingd /usr/bin
cd ../..
Then , I realized that the source address wasnt same in OP. So , I stopped the compilation , cleared old files and tried with the real source. Then , Im still getting same error. This maybe because first quoted commands were fishy.
This was my final code:
git clone https://bitbucket.org/dgslayer/sling
git clone https://github.com/bitcoin/secp256k1
cd secp256k1
./autogen.sh
./configure
make
./tests
sudo make install
cd sling/src
mkdir obj
cp crypto obj/crypto -rR
sudo make -f makefile.unix