Re: Make finding openssl program a configure or meson option

2022-10-20 Thread Peter Eisentraut
On 19.10.22 05:06, Michael Paquier wrote: Looks fine as a whole, except for one nit. src/test/ssl/t/001_ssltests.pl: warn 'couldn\'t run `openssl x509` to get client cert serialno'; Perhaps this warning should mentioned $ENV{OPENSSL} instead? Committed with that change.

Re: Make finding openssl program a configure or meson option

2022-10-18 Thread Michael Paquier
On Tue, Oct 18, 2022 at 06:46:53PM +0200, Peter Eisentraut wrote: > On 12.10.22 03:08, Michael Paquier wrote: >> openssl-env allows the use of the environment variable of the same >> name. This reminds me a bit of the recent interferences with GZIP, >> for example. > > Okay, I see what you meant

Re: Make finding openssl program a configure or meson option

2022-10-18 Thread Peter Eisentraut
7 +0200 Subject: [PATCH v2] Make finding openssl program a configure or meson option Discussion: https://www.postgresql.org/message-id/flat/dc638b75-a16a-007d-9e1c-d16ed6cf0ad2%40enterprisedb.com --- configure | 55 +++ configure.ac

Re: Make finding openssl program a configure or meson option

2022-10-13 Thread Peter Eisentraut
On 12.10.22 03:08, Michael Paquier wrote: On Tue, Oct 11, 2022 at 05:06:22PM +0200, Peter Eisentraut wrote: Various test suites use the "openssl" program as part of their setup. There isn't a way to override which openssl program is to be used, other than by fiddling with the path, perhaps. Thi

Re: Make finding openssl program a configure or meson option

2022-10-11 Thread Michael Paquier
On Tue, Oct 11, 2022 at 05:06:22PM +0200, Peter Eisentraut wrote: > Various test suites use the "openssl" program as part of their setup. There > isn't a way to override which openssl program is to be used, other than by > fiddling with the path, perhaps. This has gotten increasingly problematic >

Make finding openssl program a configure or meson option

2022-10-11 Thread Peter Eisentraut
build system actually already did this, but the result was only used in some places. This is now applied more uniformly. From 70a115310a4f130751c0f3b4fcee69a9f29a2c3e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 11 Oct 2022 17:04:42 +0200 Subject: [PATCH] Make finding openssl