Fix atomic_cas32 in Boost.Interprocess

This commit is contained in:
Petr Machata 2013-08-30 00:28:31 +02:00
commit 0ef7d67206
2 changed files with 24 additions and 1 deletions

View file

@ -34,7 +34,7 @@ Name: boost
Summary: The free peer-reviewed portable C++ source libraries
Version: 1.53.0
%define version_enc 1_53_0
Release: 13%{?dist}
Release: 14%{?dist}
License: Boost and MIT and Python
%define toplev_dirname %{name}_%{version_enc}
@ -202,6 +202,10 @@ Patch52: boost-1.54.0-thread-cond_variable_shadow.patch
# This was already fixed upstream, so no tracking bug.
Patch53: boost-1.54.0-pool-max_chunks_shadow.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=1002578
# https://svn.boost.org/trac/boost/ticket/9065
Patch55: boost-1.54.0-interprocess-atomic_cas32-ppc.patch
%bcond_with tests
%bcond_with docs_generated
@ -685,6 +689,7 @@ a number of significant features and is now developed independently
%patch51 -p1
%patch52 -p1
%patch53 -p1
%patch55 -p1
# At least python2_version needs to be a macro so that it's visible in
# %%install as well.
@ -1256,6 +1261,10 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man1/bjam.1*
%changelog
* Thu Aug 29 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-14
- Fix atomic_cas32 (thanks Jaroslav Škarvada for figuring out where
the problem is) (boost-1.54.0-interprocess-atomic_cas32-ppc.patch)
* Fri Aug 23 2013 Petr Machata <pmachata@redhat.com> - 1.53.0-13
- Fix compilation of Boost.Pool test cases
(boost-1.54.0-pool-test_linking.patch)