Sujet : Re: Programming issue
De : sgk (at) *nospam* REMOVEtroutmask.apl.washington.edu (Steven G. Kargl)
Groupes : comp.unix.bsd.freebsd.miscDate : 28. Feb 2025, 17:19:46
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vpsnn2$3o0kk$1@dont-email.me>
References : 1
User-Agent : Pan/0.145 (Duplicitous mercenary valetism; d7e168a git.gnome.org/pan2)
On Fri, 28 Feb 2025 14:06:26 +0000, The Doctor wrote:
I am trying to compile openssl 3.4 daily snap
The openssl executable gives me
ld-elf.so.1: /usr/lib/libssl.so.3: version OPENSSL_3.2.0\
required by /usr/source/openssl-openssl-3.4-20250228/apps/openssl not found
What am I doing wrong?
Looks like the executable is linked against the openssl
library installed with FreeBSD. What does ldd(1) say
about the executable you're trying to use?
% ldd <path>/apps/openssl
Also, look at the library cache,
% ldconfig -r | grep libssl
158:-lssl.30 => /usr/lib/libssl.so.30
Does 3.4 build (and install) a libssl.so.32? IF yes, then
you likely need to set LD_LIBRARY_PATH and/or LD_RUN_PATH
environmental varaible to find it.
-- steve