search for: openssl_bin_path

Displaying 3 results from an estimated 3 matches for "openssl_bin_path".

2024 Mar 06
1
Call for testing: OpenSSH 9.7
...h >/dev/null && ./ssh -V OpenSSH_9.6p1, OpenSSL 3.3.0-dev diff --git a/configure.ac b/configure.ac index fda092830..1aba65c00 100644 --- a/configure.ac +++ b/configure.ac @@ -2735,7 +2735,15 @@ AC_ARG_WITH([ssl-dir], else CPPFLAGS="-I${withval} ${CPPFLAGS}" fi - openssl_bin_PATH="${PATH}${PATH_SEPARATOR}${withval}/bin${PATH_SEPARATOR}${withval}/apps" + dnl Ensure specified openssl binary works, eg it can + dnl find its runtime libraries, before trying to use. + if test -x "${withval}/bin/openssl" && \ + "${withval}/bin/openssl&q...
2024 Mar 07
1
Call for testing: OpenSSH 9.7
...OpenSSL 3.3.0-dev > > diff --git a/configure.ac b/configure.ac > index fda092830..1aba65c00 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -2735,7 +2735,15 @@ AC_ARG_WITH([ssl-dir], > else > CPPFLAGS="-I${withval} ${CPPFLAGS}" > fi > - openssl_bin_PATH="${PATH}${PATH_SEPARATOR}${withval}/bin${PATH_SEPARATOR}${withval}/apps" > + dnl Ensure specified openssl binary works, eg it can > + dnl find its runtime libraries, before trying to use. > + if test -x "${withval}/bin/openssl" && \ > + "${wi...
2024 Mar 06
2
Call for testing: OpenSSH 9.7
On Thu, 7 Mar 2024 at 02:19, Damien Miller <djm at mindrot.org> wrote: > > > > On Tue, 5 Mar 2024, The Doctor wrote: > > > Showstopper problem! > > > > I want configure to work with /usr/local/bin/openssl and not /usr/bin/openssl > > You can use --with-ssl-dir for this. --with-ssl-dir=/foo will have > configure try /foo/bin/openssl and