On Thu, 7 Mar 2024 at 13:39, The Doctor <doctor at doctor.nl2k.ab.ca>
wrote:>
> On Thu, Mar 07, 2024 at 01:19:36PM +1100, Darren Tucker wrote:
> > On Thu, 7 Mar 2024 at 12:00, The Doctor <doctor at
doctor.nl2k.ab.ca> wrote:
> > > On Thu, Mar 07, 2024 at 09:58:38AM +1100, Darren Tucker wrote:
> > [...]
> > > > Please try this patch. Note that you will need to run
"autoreconf" to
> > > > rebuild configure before rerunning it.
> > [...]
> > > In which test release can this be made available?
> >
> > It has not been committed and is not currently in any test release or
> > snapshot. We're trying to confirm it does in fact fix what you
have
> > observed. You will need to apply the patch yourself to a snapshot or
> > git HEAD and run "autoreconf" to rebuild configure, then run
> > ./configure with your options.
> >
> >
>
> Tried it and got
>
> checking for openssl... /usr/bin/openssl
> checking for openssl/opensslv.h... yes
> checking OpenSSL header version... 30200020 (OpenSSL 3.2.2-dev )
> checking for OpenSSL_version... yes
> checking for OpenSSL_version_num... yes
> checking OpenSSL library version... 300000e0 (OpenSSL 3.0.14-dev )
> checking whether OpenSSL's headers match the library... no
> configure: error: Your OpenSSL headers do not match your
> library. Check config.log for details.
> If you are sure your installation is consistent, you can
disable the check
> by running "./configure
--without-openssl-header-check".
> Also see contrib/findssl.sh for help
identifying header/library mismatches.
That sounds like the runtime linker path problem I described in my
first reply. Is the OpenSSL 3.2.2-dev version of libcrypto in your
runtime linker path? I assume that's in /usr/local/lib? Does
/usr/local/bin/openssl actually work?
You can use --with-rpath in your configure invocation to set -R/-rpath
(exact details will vary by system and/or linker, for GNU ld, that
would be --with-rpath=-Wl,-rpath,).
--
Darren Tucker (dtucker at dtucker.net)
GPG key 11EAA6FA / A86E 3E07 5B19 5880 E860 37F4 9357 ECEF 11EA A6FA
Good judgement comes with experience. Unfortunately, the experience
usually comes from bad judgement.