]> git.pld-linux.org Git - packages/mdds.git/blob - 0001-fix-linking-error-with-boost-1.50.patch
- pl
[packages/mdds.git] / 0001-fix-linking-error-with-boost-1.50.patch
1 From 09937e5d6b4b82efbff40da2aa50fb02f2250bb2 Mon Sep 17 00:00:00 2001
2 From: David Tardon <dtardon@redhat.com>
3 Date: Sat, 28 Jul 2012 14:32:47 +0200
4 Subject: [PATCH] fix linking error with boost 1.50
5
6 ---
7  include/mdds/mixed_type_matrix_storage.hpp | 4 ++++
8  1 file changed, 4 insertions(+)
9
10 diff --git a/include/mdds/mixed_type_matrix_storage.hpp b/include/mdds/mixed_type_matrix_storage.hpp
11 index fa0bf25..bb4e354 100644
12 --- a/include/mdds/mixed_type_matrix_storage.hpp
13 +++ b/include/mdds/mixed_type_matrix_storage.hpp
14 @@ -32,6 +32,10 @@
15  
16  #include <boost/ptr_container/ptr_vector.hpp>
17  #include <boost/ptr_container/ptr_map.hpp>
18 +// Boost.Pool indirectly pulls in Boost.System, causing linking error
19 +// with Boost 1.50, because some (deprecated) symbols from System are
20 +// not found.
21 +#define BOOST_SYSTEM_NO_DEPRECATED
22  #include <boost/pool/object_pool.hpp>
23  
24  namespace mdds {
25 -- 
26 1.7.11.2
27
This page took 0.109838 seconds and 3 git commands to generate.