Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Jeff Law
a225fdcaa4 - Disable strict-aliasing due to non-conforming code in aes.c
(word_in, word_out).
2021-02-23 16:32:38 -07:00

View file

@ -1,7 +1,7 @@
Summary: AES-based encryption tool for tar/cpio and loop-aes imagemore Summary: AES-based encryption tool for tar/cpio and loop-aes imagemore
Name: aespipe Name: aespipe
Version: 2.4f Version: 2.4f
Release: 2%{?dist} Release: 3%{?dist}
License: GPLv2+ License: GPLv2+
URL: http://loop-aes.sourceforge.net/ URL: http://loop-aes.sourceforge.net/
Source: http://loop-aes.sourceforge.net/aespipe/aespipe-v%{version}.tar.bz2 Source: http://loop-aes.sourceforge.net/aespipe/aespipe-v%{version}.tar.bz2
@ -26,7 +26,9 @@ kernel module.
%setup -q -n %{name}-v%{version} %setup -q -n %{name}-v%{version}
%build %build
# Package calls CC to link # Package calls CC to link, and violates strict-aliasing C rules
%set_build_flags
CFLAGS="$CFLAGS -fno-strict-aliasing"
%configure LDFLAGS="${CFLAGS}" %configure LDFLAGS="${CFLAGS}"
%global make_target %{nil} %global make_target %{nil}
@ -56,6 +58,10 @@ install -Dp -m0755 aespipe %{buildroot}%{_bindir}/aespipe
%{_bindir}/aespipe %{_bindir}/aespipe
%changelog %changelog
* Tue Feb 23 2021 Jeff Law <law@redhat.com> - 2.4f-3
- Disable strict-aliasing due to non-conforming code in aes.c
(word_in, word_out).
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4f-2 * Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4f-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild