Accepting request 834901 from devel:libraries:c_c++

- serialization_missing_includes.patch: Add missing includes in the
  serialization library (bsc#1176597)

OBS-URL: https://build.opensuse.org/request/show/834901
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/boost?expand=0&rev=140
This commit is contained in:
Dominique Leuenberger 2020-09-18 12:30:36 +00:00 committed by Git OBS Bridge
commit 3ca491f8c6
3 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Sep 16 11:57:48 UTC 2020 - Adam Majer <adam.majer@suse.de>
- serialization_missing_includes.patch: Add missing includes in the
serialization library (bsc#1176597)
-------------------------------------------------------------------
Thu Sep 3 21:30:24 UTC 2020 - Berthold Gunreben <azouhr@opensuse.org>

View File

@ -205,6 +205,7 @@ Patch17: python_mpi.patch
Patch18: dynamic_linking.patch
Patch20: python_library_name.patch
Patch21: boost-remove-cmakedir.patch
Patch22: serialization_missing_includes.patch
BuildRequires: fdupes
BuildRequires: gmp-devel
BuildRequires: libbz2-devel
@ -1132,6 +1133,7 @@ find -type f ! \( -name \*.sh -o -name \*.py -o -name \*.pl \) -exec chmod -x {}
%patch18 -p1
%patch20 -p1
%patch21 -p1
%patch22 -p1
%build
find . -type f -exec chmod u+w {} +

View File

@ -0,0 +1,12 @@
Index: boost_1_74_0/boost/serialization/set.hpp
===================================================================
--- boost_1_74_0.orig/boost/serialization/set.hpp
+++ boost_1_74_0/boost/serialization/set.hpp
@@ -25,6 +25,7 @@
#include <boost/serialization/detail/stack_constructor.hpp>
#include <boost/serialization/collection_size_type.hpp>
#include <boost/serialization/item_version_type.hpp>
+#include <boost/serialization/library_version_type.hpp>
#include <boost/serialization/collections_save_imp.hpp>
#include <boost/serialization/split_free.hpp>