From 3c7ea841c6676891acb1dde59638460e6322ae77 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 27 May 2024 09:46:12 -0700 Subject: [PATCH] Install SSL library and headers ( thanks Tom Briden ) Fixes rhbz#2266018 --- hiredis.spec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/hiredis.spec b/hiredis.spec index 69ba6e8..abb924b 100644 --- a/hiredis.spec +++ b/hiredis.spec @@ -1,6 +1,6 @@ Name: hiredis Version: 1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Minimalistic C client library for Redis License: BSD URL: https://github.com/redis/hiredis @@ -29,7 +29,7 @@ developing applications that use %{name}. DEBUG="%{optflags}" LDFLAGS="%{?__global_ldflags}" USE_SSL=1 %install -%make_install PREFIX="%{_prefix}" LIBRARY_PATH="%{_lib}" +%make_install PREFIX="%{_prefix}" LIBRARY_PATH="%{_lib}" USE_SSL=1 find %{buildroot} -name '*.a' -delete -print @@ -42,14 +42,21 @@ make check || true %files %doc COPYING %{_libdir}/libhiredis.so.1.0.0 +%{_libdir}/libhiredis_ssl.so.1.0.0 %files devel %doc CHANGELOG.md README.md %{_includedir}/%{name}/ %{_libdir}/libhiredis.so +%{_libdir}/libhiredis_ssl.so %{_libdir}/pkgconfig/hiredis.pc +%{_libdir}/pkgconfig/hiredis_ssl.pc %changelog +* Mon May 27 2024 Kevin Fenzi - 1.0.2-2 +- Install SSL library and headers ( thanks Tom Briden ) +- Fixes rhbz#2266018 + * Sat Jan 15 2022 Orion Poplawski - 1.0.2-1 - Update to 1.0.2 - Enable SSL