Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add openssl-devel-engine build requirement on Fedora 41+ #227

Merged
merged 1 commit into from
Jul 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion packaging/fedora/myproxy.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name: myproxy
%global soname 6
Version: 6.2.17
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Manage X.509 Public Key Infrastructure (PKI) security credentials

Group: Applications/Internet
Expand All @@ -28,6 +28,10 @@ BuildRequires: openldap2-devel
%else
BuildRequires: openldap-devel >= 2.3
%endif
BuildRequires: openssl-devel
%if %{?fedora}%{!?fedora:0} >= 41
BuildRequires: openssl-devel-engine
%endif
BuildRequires: pam-devel
%if ! %{?suse_version}%{!?suse_version:0}
BuildRequires: perl-generators
Expand Down Expand Up @@ -387,6 +391,9 @@ fi
%doc %{_pkgdocdir}/LICENSE*

%changelog
* Thu Jul 11 2024 Mattias Ellert <[email protected]> - 6.2.17-2
- Add openssl-devel-engine build requirement on Fedora 41+

* Sun Mar 17 2024 Mattias Ellert <[email protected]> - 6.2.17-1
- Handle 64 bit time_t on 32 bit systems

Expand Down
Loading