From d681d2bfff2df9e54b57b5c671abcfc9fcd0c3ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Janu=C5=A1?= Date: Mon, 19 Jul 2021 13:49:52 +0200 Subject: [PATCH] Enable ssl support for upgrade server Resolves: #1983632 --- postgresql.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/postgresql.spec b/postgresql.spec index 925455e..bc6157c 100644 --- a/postgresql.spec +++ b/postgresql.spec @@ -63,7 +63,7 @@ Summary: PostgreSQL client programs Name: postgresql %global majorversion 13 Version: %{majorversion}.3 -Release: 1%{?dist} +Release: 2%{?dist} # The PostgreSQL license is very similar to other MIT licenses, but the OSI # recognizes it as an independent license, so we do as well. @@ -632,6 +632,9 @@ upgrade_configure () %if %pltcl --with-tcl \ %endif +%if %ssl + --with-openssl \ +%endif %if %plpython3 --with-python \ %endif @@ -1216,6 +1219,10 @@ make -C postgresql-setup-%{setup_version} check %changelog +* Mon Jul 19 2021 Filip Januš - 13.3-2 +- Enable SSL for upgrade server + Resolves: #1983632 + * Wed Jun 16 2021 Honza Horak - 13.3-1 - Update to 13.3 Resolves: #1964497