The package rpms/samba.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/samba.git/commit/?id=73e15d8b0d22809....
Change: +%ifarch x86_64
Thanks.
Full change: ============
commit 73e15d8b0d228096f4209f71f0e75853145d3bb4 Author: Bastien Nocera hadess@hadess.net Date: Fri Nov 24 13:30:33 2017 +0000
Enable AES acceleration on Intel compatible CPUs by default
Reviewed-by: Andreas Schneider asn@redhat.com
diff --git a/samba.spec b/samba.spec index e7136bf..64165fc 100644 --- a/samba.spec +++ b/samba.spec @@ -6,7 +6,7 @@ # ctdb is enabled by default, you can disable it with: --without clustering %bcond_without clustering
-%define main_release 0 +%define main_release 1
%define samba_version 4.7.3 %define talloc_version 2.1.10 @@ -47,6 +47,11 @@ %endif %endif
+%global with_intel_aes_accel 0 +%ifarch x86_64 +%global with_intel_aes_accel 1 +%endif + %global libwbc_alternatives_version 0.14 %global libwbc_alternatives_suffix %nil %if 0%{?__isa_bits} == 64 @@ -839,6 +844,9 @@ xzcat %{SOURCE0} | gpgv2 --quiet --keyring %{SOURCE2} %{SOURCE1} - %if %{with testsuite} --enable-selftest \ %endif +%if %with_intel_aes_accel + --accel-aes=intelaesni \ +%endif --with-systemd \ --extra-python=%{__python3}
@@ -1567,6 +1575,9 @@ rm -rf %{buildroot} %defattr(-,root,root) # common libraries %{_libdir}/samba/libpopt-samba3-samba4.so +%if %{with_intel_aes_accel} +%{_libdir}/samba/libaesni-intel-samba4.so +%endif
%dir %{_libdir}/samba/ldb
@@ -3374,6 +3385,9 @@ rm -rf %{buildroot} %endif # with_clustering_support
%changelog +* Thu Nov 23 2017 Bastien Nocera bnocera@redhat.com - 4.7.3-1 +- Enable AES acceleration on Intel compatible CPUs by default + * Tue Nov 21 2017 Guenther Deschner gdeschner@redhat.com - 4.7.3-0 - Update to Samba 4.7.3 - resolves: #1515692 - Security fix for CVE-2017-14746 and CVE-2017-15275
arch-excludes@lists.fedoraproject.org