diff options
author | 2012-07-10 16:32:16 +0000 | |
---|---|---|
committer | 2012-07-10 16:32:16 +0000 | |
commit | 9ca45b6a2d742f55afe80eda0da35d570238daaf (patch) | |
tree | 18c875e24d50a6ff76d92bd1a1a8ffe8e064848f /media-gfx/kgraphviewer/files | |
parent | Bring the ebuild into the 2010s. (diff) | |
download | historical-9ca45b6a2d742f55afe80eda0da35d570238daaf.tar.gz historical-9ca45b6a2d742f55afe80eda0da35d570238daaf.tar.bz2 historical-9ca45b6a2d742f55afe80eda0da35d570238daaf.zip |
Fix build with boost-1.50, wrt bug #425478.
Package-Manager: portage-2.1.11.5/cvs/Linux x86_64
Diffstat (limited to 'media-gfx/kgraphviewer/files')
-rw-r--r-- | media-gfx/kgraphviewer/files/kgraphviewer-2.1.1-boost-1.50.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media-gfx/kgraphviewer/files/kgraphviewer-2.1.1-boost-1.50.patch b/media-gfx/kgraphviewer/files/kgraphviewer-2.1.1-boost-1.50.patch new file mode 100644 index 000000000000..46c9490629cf --- /dev/null +++ b/media-gfx/kgraphviewer/files/kgraphviewer-2.1.1-boost-1.50.patch @@ -0,0 +1,32 @@ +From 470bf0a4774a600dbd958b781342589a337d8898 Mon Sep 17 00:00:00 2001 +From: Michael Palimaka <kensington@gentoo.org> +Date: Wed, 11 Jul 2012 01:58:00 +1000 +Subject: [PATCH] Fix build with boost-1.50 + +REVIEW: 105494 +--- + src/part/DotGraphParsingHelper.cpp | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/part/DotGraphParsingHelper.cpp b/src/part/DotGraphParsingHelper.cpp +index 69cac49..7d46837 100644 +--- a/src/part/DotGraphParsingHelper.cpp ++++ b/src/part/DotGraphParsingHelper.cpp +@@ -26,10 +26,10 @@ + #include "graphedge.h" + + #include <boost/throw_exception.hpp> +-#include <boost/spirit/core.hpp> +-#include <boost/spirit/utility/distinct.hpp> +-#include <boost/spirit/utility/loops.hpp> +-#include <boost/spirit/utility/confix.hpp> ++#include <boost/spirit/include/classic_core.hpp> ++#include <boost/spirit/include/classic_distinct.hpp> ++#include <boost/spirit/include/classic_loops.hpp> ++#include <boost/spirit/include/classic_confix.hpp> + + + #include <iostream> +-- +1.7.11.1 + |