Mercurial > trustbridge
diff INSTALL @ 908:d1c951b3012d
Curl based implementation of sslconnection
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 13 Aug 2014 19:35:08 +0200 |
parents | be3cb357b027 |
children | 7ac5a366184d |
line wrap: on
line diff
--- a/INSTALL Thu Aug 14 08:19:30 2014 +0200 +++ b/INSTALL Wed Aug 13 19:35:08 2014 +0200 @@ -61,6 +61,21 @@ cmake .. -DCMAKE_C_FLAGS=-fpic -DCMAKE_INSTALL_PREFIX=$YOURPREFIX make && make test && make install +Libcurl: + wget http://curl.haxx.se/download/curl-7.37.1.tar.{gz,gz.asc} + gpg2 --verify curl-7.37.1.tar.gz.asc + tar -xf curl-7.37.1.tar.gz + cd curl-7.37.1/ + + ./configure --prefix=$YOURPREFIX \ + --without-nghttp2 --without-libidn --without-winidn --without-libssh2 \ + --without-librtmp --without-libmetalink --without-axtls --without-nss \ + --without-cyassl --without-ssl --without-gnutls --disable-gopher --disable-smtp \ + --disable-imap --disable-pop3 --disable-tftp --disable-telnet --disable-dict \ + --disable-proxy --disable-rtsp --disable-ldaps --disable-ldap --disable-file \ + --disable-ftp --enable-http --enable-shared=no -enable-static=yes \ + --with-polarssl=$YOURPREFIX --without-ca-bundle --without-ca-path + To compile the software you can use plain cmake. An out of source build is highly suggested. For build options see CMakeList.txt