Install SSL library and headers ( thanks Tom Briden <tom.briden@eckoh.com> )

Fixes rhbz#2266018
epel9 imports/epel9/hiredis-1.0.2-2.el9
Kevin Fenzi 4 months ago
parent ca5b2a3a63
commit 3c7ea841c6

@ -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 <kevin@scrye.com> - 1.0.2-2
- Install SSL library and headers ( thanks Tom Briden <tom.briden@eckoh.com> )
- Fixes rhbz#2266018
* Sat Jan 15 2022 Orion Poplawski <orion@nwra.com> - 1.0.2-1
- Update to 1.0.2
- Enable SSL

Loading…
Cancel
Save