From 4a5f0c8d77292e752f4f71179347c4e879980540 Mon Sep 17 00:00:00 2001 From: Filip Janus Date: Wed, 3 Jul 2024 14:17:01 +0200 Subject: [PATCH] Disable openssl ENGINE_API Resolves: RHEL-33737 --- libpq.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libpq.spec b/libpq.spec index e1aea5f..248c162 100644 --- a/libpq.spec +++ b/libpq.spec @@ -4,7 +4,7 @@ Summary: PostgreSQL client library Name: libpq Version: %{majorversion}.1 -Release: 6%{?dist} +Release: 7%{?dist} License: PostgreSQL Url: http://www.postgresql.org/ @@ -68,6 +68,9 @@ find . -type f -name .gitignore | xargs rm %build # complements symbol-versioning patch export SYMBOL_VERSION_PREFIX=RHPG_ +# Disable ENGINE_API +CFLAGS="$CFLAGS -DOPENSSL_NO_ENGINE" +export CFLAGS # We don't build server nor client (e.g. /bin/psql) binaries in this package, so # we can disable some configure options. @@ -138,6 +141,9 @@ find_lang_bins %name-devel.lst pg_config %_libdir/pkgconfig/libpq.pc %changelog +* Wed Jul 3 2024 Filip Janus - 16.1-7 +- Disable openssl ENGINE_API + * Mon Jun 24 2024 Troy Dawson - 16.1-6 - Bump release for June 2024 mass rebuild