SHA256
1
0
forked from pool/boost

- serialization_missing_includes.patch: Add missing includes in the

serialization library

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/boost?expand=0&rev=264
This commit is contained in:
Adam Majer 2020-09-16 11:58:23 +00:00 committed by Git OBS Bridge
parent 3040aed5ba
commit d771238c66
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
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Sep 3 21:30:24 UTC 2020 - Berthold Gunreben <azouhr@opensuse.org> 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 Patch18: dynamic_linking.patch
Patch20: python_library_name.patch Patch20: python_library_name.patch
Patch21: boost-remove-cmakedir.patch Patch21: boost-remove-cmakedir.patch
Patch22: serialization_missing_includes.patch
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: gmp-devel BuildRequires: gmp-devel
BuildRequires: libbz2-devel BuildRequires: libbz2-devel
@ -1132,6 +1133,7 @@ find -type f ! \( -name \*.sh -o -name \*.py -o -name \*.pl \) -exec chmod -x {}
%patch18 -p1 %patch18 -p1
%patch20 -p1 %patch20 -p1
%patch21 -p1 %patch21 -p1
%patch22 -p1
%build %build
find . -type f -exec chmod u+w {} + 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>