cURL / Mailing Lists / curl-users / Single Mail

curl-users

Re: cURL make errors on Cobalt Linux

From: Lin-Kai Cheng <rap1_at_ms76.hinet.net>
Date: Wed, 31 Mar 2004 18:16:41 +0800

As Ralph said, I can find ssl lib in /usr/lib and header files in /usr/include/openssl
And I tried ./configure --with-ssl=/usr
But I still got the same result when "make"

The version of curl on my machine is 7.11.1
and since the Cobalt machine is web-hosted,
I've no idea where the openssl installed originally.
I use "rpm -qi" to find that the version is 0.9.3a
and also "rpm -ql" to see these files installed.

/etc/openssl.cnf
/etc/ssl
/etc/ssl/certs
/etc/ssl/private
/usr/bin/CA.pl
/usr/bin/CA.sh
/usr/bin/c_hash
/usr/bin/c_info
/usr/bin/c_issuer
/usr/bin/c_name
/usr/bin/c_rehash
/usr/bin/der_chop
/usr/bin/openssl
/usr/doc/openssl-0.9.3a
/usr/doc/openssl-0.9.3a/CHANGES
/usr/doc/openssl-0.9.3a/CHANGES.SSLeay
/usr/doc/openssl-0.9.3a/INSTALL
/usr/doc/openssl-0.9.3a/LICENSE
/usr/doc/openssl-0.9.3a/NEWS
/usr/doc/openssl-0.9.3a/README
/usr/doc/openssl-0.9.3a/c-indentation.el
/usr/doc/openssl-0.9.3a/crypto.pod
/usr/doc/openssl-0.9.3a/openssl.pod
/usr/doc/openssl-0.9.3a/openssl.txt
/usr/doc/openssl-0.9.3a/openssl_button.gif
/usr/doc/openssl-0.9.3a/openssl_button.html
/usr/doc/openssl-0.9.3a/ssl.pod
/usr/doc/openssl-0.9.3a/ssleay.txt
/usr/lib/libcrypto.so.0
/usr/lib/libcrypto.so.0.9.3
/usr/lib/libssl.so.0
/usr/lib/libssl.so.0.9.3

then what's the correct path that I should give at the configuration command
with openssl involved?
But I've also tried only use "./configure" then "make", I got the same error
results.

  ----- Original Message -----
  From: Ralph Mitchell
  To: curl tool talk
  Cc: Kai ; rap1
  Sent: Wednesday, March 31, 2004 5:04 PM
  Subject: Re: cURL make errors on Cobalt Linux

  If the openssl program binary is in /usr/bin, then it's likely that the root of your openssl installation is /usr. If so, you should find ssl libs in /usr/lib and headers in /usr/include/openssl:

      ls /usr/lib/*ssl* /usr/include/openssl

  If you get back a pile of stuff (maybe 5 or more libs and 60+ headers) then try:

      ./configure --with-ssl=/usr

  Ralph Mitchell

  Daniel Stenberg wrote:

On Wed, 31 Mar 2004, Lin-Kai Cheng wrote:

  During installation of cURL
    
What version of curl?

  I tried " ./configure --with-ssl=/usr/bin/openssl" ,
    
What version of OpenSSL?

I very much doubt that /usr/bin/openssl is the root of your openssl
installation (which is what you point out with the --with-ssl option to
configure). It if is, I'd suggest you install it in a more sensible path.

  
Received on 2004-03-31