Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/boost/files: boost-1.52.0-tuple.patch
Date: Thu, 22 Nov 2012 03:38:11
Message-Id: 20121122033759.30BB320066@flycatcher.gentoo.org
1 flameeyes 12/11/22 03:37:59
2
3 Added: boost-1.52.0-tuple.patch
4 Log:
5 Add patch to fix boost's tuple library. Thanks to Alex in bug #443992.
6
7 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
8
9 Revision Changes Path
10 1.1 dev-libs/boost/files/boost-1.52.0-tuple.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/files/boost-1.52.0-tuple.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/files/boost-1.52.0-tuple.patch?rev=1.1&content-type=text/plain
14
15 Index: boost-1.52.0-tuple.patch
16 ===================================================================
17 --- boost/signals2/detail/variadic_slot_invoker.hpp.org 2012-11-20 09:15:55.000000000 +0400
18 +++ boost/signals2/detail/variadic_slot_invoker.hpp 2012-11-20 09:19:56.000000000 +0400
19 @@ -20,7 +20,7 @@
20 // if compiler has std::tuple use it instead of boost::tuple
21 // because boost::tuple does not have variadic template support at present.
22 #ifdef BOOST_NO_CXX11_HDR_TUPLE
23 -#include <boost/tuple.hpp>
24 +#include <boost/tuple/tuple.hpp>
25 #define BOOST_SIGNALS2_TUPLE boost::tuple
26 #else
27 #include <tuple>