Config file i sgiving me error, if someone knows how to fix in ubuntu 16.04 thanks
./configure: line 5684: syntax error near unexpected token `,'
./configure: line 5684: `LIBCURL_CHECK_CONFIG(, 7.15.2, ,'
Install all deps on Ubuntu 16.04:
sudo apt-get install libssl-dev libevent-dev build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python-dev libxml2-dev libxslt-dev libbz2-dev
sudo apt-get install software-properties-common
Install berkeley 4.8 db libs on Ubuntu 16.04:
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
OR
wget http://download.oracle.com/berkeley-db/db-4.8.30.zip
unzip db-4.8.30.zip
cd db-4.8.30
cd build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make
make install
git clone https://github.com/unitusdev/unitus.git
cd unitus
./autogen.sh
./configure
OR
./configure CPPFLAGS="-I/usr/local/BerkeleyDB.4.8/include -O2" LDFLAGS="-L/usr/local/BerkeleyDB.4.8/lib"
make