| From: | Tatsuo Ishii <ishii(at)postgresql(dot)org> |
|---|---|
| To: | pgpool-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgpool: Explicitly stat supported minimum OpenSSL version. |
| Date: | 2025-12-24 06:39:30 |
| Message-ID: | E1vYIWw-002QJ7-1Y@gothos.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgpool-committers |
Explicitly stat supported minimum OpenSSL version.
That can be done in configure.ac by using
AC_DEFINE(OPENSSL_API_COMPAT, [0x10002000L],
[Define to the OpenSSL API version in use. This avoids deprecation warnings from newer OpenSSL versions.])
The supported minimum version is 1.0.2, which is identical to
PostgreSQL at this point. (Actually the AC_DEFINE is brought in from
PostgreSQL). Also this could avoid OpenSSL deprecation warnings if
your installed OpenSSL is new, like 3.0.
Moreover, add mention to installation document that required minimum
version of OpenSSL is 1.0.2.
Backpatch-through: v4.3
Branch
------
V4_5_STABLE
Details
-------
https://git.postgresql.org/gitweb?p=pgpool2.git;a=commitdiff;h=ff56951b473c4f22f4804d3a349a0663fcb458cc
Modified Files
--------------
configure.ac | 4 ++++
doc.ja/src/sgml/installation.sgml | 1 +
doc/src/sgml/installation.sgml | 8 +++++---
3 files changed, 10 insertions(+), 3 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tatsuo Ishii | 2025-12-24 06:39:36 | pgpool: Explicitly stat supported minimum OpenSSL version. |
| Previous Message | Tatsuo Ishii | 2025-12-24 06:39:23 | pgpool: Explicitly stat supported minimum OpenSSL version. |