Gentoo Archives: gentoo-commits

From: "Michael Palimaka (kensington)" <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/kgraphviewer/files: kgraphviewer-2.1.1-boost-1.50.patch
Date: Tue, 10 Jul 2012 16:32:30
Message-Id: 20120710163216.7B82B20065@flycatcher.gentoo.org
1 kensington 12/07/10 16:32:16
2
3 Added: kgraphviewer-2.1.1-boost-1.50.patch
4 Log:
5 Fix build with boost-1.50, wrt bug #425478.
6
7 (Portage version: 2.1.11.5/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-gfx/kgraphviewer/files/kgraphviewer-2.1.1-boost-1.50.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/kgraphviewer/files/kgraphviewer-2.1.1-boost-1.50.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/kgraphviewer/files/kgraphviewer-2.1.1-boost-1.50.patch?rev=1.1&content-type=text/plain
14
15 Index: kgraphviewer-2.1.1-boost-1.50.patch
16 ===================================================================
17 From 470bf0a4774a600dbd958b781342589a337d8898 Mon Sep 17 00:00:00 2001
18 From: Michael Palimaka <kensington@g.o>
19 Date: Wed, 11 Jul 2012 01:58:00 +1000
20 Subject: [PATCH] Fix build with boost-1.50
21
22 REVIEW: 105494
23 ---
24 src/part/DotGraphParsingHelper.cpp | 8 ++++----
25 1 file changed, 4 insertions(+), 4 deletions(-)
26
27 diff --git a/src/part/DotGraphParsingHelper.cpp b/src/part/DotGraphParsingHelper.cpp
28 index 69cac49..7d46837 100644
29 --- a/src/part/DotGraphParsingHelper.cpp
30 +++ b/src/part/DotGraphParsingHelper.cpp
31 @@ -26,10 +26,10 @@
32 #include "graphedge.h"
33
34 #include <boost/throw_exception.hpp>
35 -#include <boost/spirit/core.hpp>
36 -#include <boost/spirit/utility/distinct.hpp>
37 -#include <boost/spirit/utility/loops.hpp>
38 -#include <boost/spirit/utility/confix.hpp>
39 +#include <boost/spirit/include/classic_core.hpp>
40 +#include <boost/spirit/include/classic_distinct.hpp>
41 +#include <boost/spirit/include/classic_loops.hpp>
42 +#include <boost/spirit/include/classic_confix.hpp>
43
44
45 #include <iostream>
46 --
47 1.7.11.1