I built a 64-bit version of nss and am trying to use it to create a curl library using the --without -ssl and -with-nss = NSS_ROOT options.
At the setup stage, I see the following:
checking for PK11_CreateGenericObject in -lnss3... no
checking for NSS_Initialize in -lnss3... no
checking for ssl_version in -laxtls... no
configure: WARNING: SSL disabled, you will not be able to use HTTPS, FTPS, NTLM and more.
configure: WARNING: Use --with-ssl, --with-gnutls, --with-polarssl, --with-cyassl, --with-nss or --with-axtls to address this.
and finally libcurl is created without https support.
curl version: 7.25.0
Host setup: x86_64-unknown-linux-gnu
Install prefix: /usr/local
Compiler: gcc
SSL support: no (
SSH support: no (
zlib support: enabled
krb4 support: no (
GSSAPI support: no (
SPNEGO support: no (
TLS-SRP support: no (
resolver: default (
ipv6 support: no (
IDN support: no (
Build libcurl: Shared=yes, Static=yes
Built-in manual: enabled
Verbose errors: enabled (
SSPI support: no (
ca cert bundle: no
ca cert path: no
LDAP support: enabled (OpenLDAP)
LDAPS support: enabled
RTSP support: enabled
RTMP support: no (
Protocols: DICT FILE FTP GOPHER HTTP IMAP LDAP LDAPS POP3 RTSP SMTP TELNET TFTP
Can someone tell me how to solve this?
source
share