summaryrefslogtreecommitdiff
path: root/dev-libs/boost/files/boost-1.52.0-tuple.patch
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2015-06-29 08:00:15 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2015-06-29 08:00:15 +0300
commit1cbcbc8695ca457a09bb3153681dfd7e7a2e30b4 (patch)
treedda383cb7a3b3962d7eaa4bad9d9a07c9a298260 /dev-libs/boost/files/boost-1.52.0-tuple.patch
parent5fd8b3d4940f544f405e586f68b48ea7e569984f (diff)
boost from gentoo (version bump)
Diffstat (limited to 'dev-libs/boost/files/boost-1.52.0-tuple.patch')
-rw-r--r--dev-libs/boost/files/boost-1.52.0-tuple.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-libs/boost/files/boost-1.52.0-tuple.patch b/dev-libs/boost/files/boost-1.52.0-tuple.patch
new file mode 100644
index 0000000..08bab86
--- /dev/null
+++ b/dev-libs/boost/files/boost-1.52.0-tuple.patch
@@ -0,0 +1,11 @@
+--- boost/signals2/detail/variadic_slot_invoker.hpp.org 2012-11-20 09:15:55.000000000 +0400
++++ boost/signals2/detail/variadic_slot_invoker.hpp 2012-11-20 09:19:56.000000000 +0400
+@@ -20,7 +20,7 @@
+ // if compiler has std::tuple use it instead of boost::tuple
+ // because boost::tuple does not have variadic template support at present.
+ #ifdef BOOST_NO_CXX11_HDR_TUPLE
+-#include <boost/tuple.hpp>
++#include <boost/tuple/tuple.hpp>
+ #define BOOST_SIGNALS2_TUPLE boost::tuple
+ #else
+ #include <tuple>