cURL / Mailing Lists / curl-users / Single Mail

curl-users

Re: installing curl

From: Martijn ten Heuvel <pjottum_at_gmail.com>
Date: Thu, 09 Mar 2006 21:23:55 +0100

andreas.greeff_at_zkb.ch schreef:
>
> Hello
>
> Please help me installing curl.
> After successfully installing curl with command
> root_at_backeurexth ST ### /usr/sbin/pkgadd -d
> curl-7.12.2-sol10-sparc-local
> I get errors, i.e.:
>
> $ curl --help
> ld.so.1: curl: fatal: libssl.so.0.9.7: open failed: No such file or
> directory
> Killed
> (See attached file: curlinst.txt)
>
> Where do I find a useful manual ? I didn't find one on www.haxx.se.
> How do I set the key etc. ?
>
Libssl seems to be missing.
Test what you've got and what you need with ldd curl:

martijnh_at_system ~ $ ldd /usr/local/bin/curl
        libstdc++.so.5 => /usr/lib/libstdc++.so.5 (0x4001b000)
        libcurl.so.3 => /usr/local/lib/libcurl.so.3 (0x400d3000)
        libssl.so.0.9.7 => /usr/local/ssl/lib/libssl.so.0.9.7 (0x40102000)
        libcrypto.so.0.9.7 => /usr/local/ssl/lib/libcrypto.so.0.9.7
(0x40131000)
        libdl.so.2 => /lib/libdl.so.2 (0x4022d000)
        libz.so.1 => /usr/lib/libz.so.1 (0x40231000)
        libc.so.6 => /lib/libc.so.6 (0x40242000)
        libm.so.6 => /lib/libm.so.6 (0x40366000)
        libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x40388000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)

If a library is missing, ldd will report the error. Install openssl,
problem should be (could be..) fixed.

Martijn
Received on 2006-03-09