Patch Boost.Format for C++20 compatibility with GCC 10 (#1818723)
This commit is contained in:
parent
193ea1c207
commit
d5a194094a
28
boost-1.69-format-allocator.patch
Normal file
28
boost-1.69-format-allocator.patch
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
--- boost_1_69_0/boost/format/alt_sstream_impl.hpp~ 2020-03-30 15:20:18.565658757 +0100
|
||||||
|
+++ boost_1_69_0/boost/format/alt_sstream_impl.hpp 2020-03-30 15:20:33.768636162 +0100
|
||||||
|
@@ -40,8 +40,11 @@
|
||||||
|
#ifdef _RWSTD_NO_CLASS_PARTIAL_SPEC
|
||||||
|
void *vd_ptr = alloc_.allocate(sz, is_allocated_? eback() : 0);
|
||||||
|
Ch *new_ptr = static_cast<Ch *>(vd_ptr);
|
||||||
|
-#else
|
||||||
|
+#elif defined BOOST_NO_CXX11_ALLOCATOR
|
||||||
|
Ch *new_ptr = alloc_.allocate(sz, is_allocated_? eback() : 0);
|
||||||
|
+#else
|
||||||
|
+ Ch *new_ptr = std::allocator_traits<compat_allocator_type>::allocate(alloc_,
|
||||||
|
+ sz, is_allocated_? eback() : 0);
|
||||||
|
#endif
|
||||||
|
// if this didnt throw, we're safe, update the buffer
|
||||||
|
dealloc();
|
||||||
|
@@ -257,8 +260,11 @@
|
||||||
|
#ifdef _RWSTD_NO_CLASS_PARTIAL_SPEC
|
||||||
|
void *vdptr = alloc_.allocate(new_size, is_allocated_? oldptr : 0);
|
||||||
|
newptr = static_cast<Ch *>(vdptr);
|
||||||
|
-#else
|
||||||
|
+#elif defined BOOST_NO_CXX11_ALLOCATOR
|
||||||
|
newptr = alloc_.allocate(new_size, is_allocated_? oldptr : 0);
|
||||||
|
+#else
|
||||||
|
+ newptr = std::allocator_traits<compat_allocator_type>::allocate(alloc_,
|
||||||
|
+ new_size, is_allocated_? oldptr : 0);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
@ -44,7 +44,7 @@ Summary: The free peer-reviewed portable C++ source libraries
|
|||||||
Version: 1.69.0
|
Version: 1.69.0
|
||||||
%global version_enc 1_69_0
|
%global version_enc 1_69_0
|
||||||
%global version_suffix 169
|
%global version_suffix 169
|
||||||
Release: 14%{?dist}
|
Release: 15%{?dist}
|
||||||
License: Boost and MIT and Python
|
License: Boost and MIT and Python
|
||||||
|
|
||||||
%global toplev_dirname %{real_name}_%{version_enc}
|
%global toplev_dirname %{real_name}_%{version_enc}
|
||||||
@ -146,6 +146,9 @@ Patch84: boost-1.69-random.patch
|
|||||||
# https://github.com/boostorg/mpi/pull/81
|
# https://github.com/boostorg/mpi/pull/81
|
||||||
Patch85: boost-1.69-mpi-c_data.patch
|
Patch85: boost-1.69-mpi-c_data.patch
|
||||||
|
|
||||||
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1818723
|
||||||
|
Patch86: boost-1.69-format-allocator.patch
|
||||||
|
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
%bcond_with docs_generated
|
%bcond_with docs_generated
|
||||||
|
|
||||||
@ -650,6 +653,7 @@ find ./boost -name '*.hpp' -perm /111 | xargs chmod a-x
|
|||||||
%patch83 -p1
|
%patch83 -p1
|
||||||
%patch84 -p2
|
%patch84 -p2
|
||||||
%patch85 -p2
|
%patch85 -p2
|
||||||
|
%patch86 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# Dump the versions being used into the build logs.
|
# Dump the versions being used into the build logs.
|
||||||
@ -1269,6 +1273,9 @@ fi
|
|||||||
%{_mandir}/man1/bjam.1*
|
%{_mandir}/man1/bjam.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 30 2020 Jonathan Wakely <jwakely@redhat.com> - 1.69.0-15
|
||||||
|
- Patch Boost.Format for C++20 compatibility with GCC 10 (#1818723)
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.69.0-14
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.69.0-14
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user