Post
Topic
Board Announcements (Altcoins)
Re: [ANN][Datacoin] Datacoin blockchain start announcement (Minor code upd + logo)
by
j0nn9
on 08/06/2015, 11:39:35 UTC
Nice!!

Could we get a list of dependencies and config instructions?

dependent libraries are:
Code:
bzip2-1.0.6
curl-7.42.1
file-5.22        (libmagic)
jansson-2.7
libmicrohttpd-0.9.42
openssl-1.0.2a
protobuf-2.6.1
sqlite-3.8.8.3

You can probably compiler DTCBrowser with different library versions, but the ones above, are the ones which were used to build the binaries.

for bzip2 just run:
Code:
make

for libmicrohttpd run:
Code:
./configure --without-gnutls
make

for curl run:
Code:
./configure --disable-ftp \
            --disable-ldap \
            --disable-file \
            --disable-ldaps \
            --disable-rtsp \
            --disable-proxy \
            --disable-dict \
            --disable-telnet \
            --disable-tftp \
            --disable-pop3 \
            --disable-imap \
            --disable-smb \
            --disable-smtp \
            --disable-gopher \
            --disable-manual \
            --disable-sspi  \
            --disable-ntlm-wb   \
            --disable-tls-srp \
            --disable-cookies \
            --disable-soname-bump \
            --without-zlib \
            --without-winssl \
            --without-darwinssl  \
            --without-ssl \
            --without-gnutls  \
            --without-polarssl \
            --without-cyassl \
            --without-nss  \
            --without-axtls  \
            --without-libssh2 \
            --without-winidn \
            --without-libidn \
            --without-librtmp
make

for the rest I think:
Code:
./configure
make
should do it