Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-games/wfmath/files: wfmath-0.3.11-gcc47.patch
Date: Wed, 31 Oct 2012 09:25:33
Message-Id: 20121031092514.0DA4F21601@flycatcher.gentoo.org
1 tupone 12/10/31 09:25:13
2
3 Added: wfmath-0.3.11-gcc47.patch
4 Log:
5 Fix Bug #362731 & Bug #425706
6 Migrating to EAPI 4
7
8 (Portage version: 2.1.11.31/cvs/Linux i686, signed Manifest commit with key 0145142D)
9
10 Revision Changes Path
11 1.1 dev-games/wfmath/files/wfmath-0.3.11-gcc47.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/wfmath/files/wfmath-0.3.11-gcc47.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/wfmath/files/wfmath-0.3.11-gcc47.patch?rev=1.1&content-type=text/plain
15
16 Index: wfmath-0.3.11-gcc47.patch
17 ===================================================================
18 --- wfmath/vector.h.old 2012-10-31 08:39:38.033547273 +0100
19 +++ wfmath/vector.h 2012-10-31 08:40:12.200097132 +0100
20 @@ -34,6 +34,7 @@
21 #include <wfmath/zero.h>
22
23 #include <iosfwd>
24 +#include <cmath>
25
26 namespace WFMath {
27
28 --- wfmath/point.h.old 2012-10-31 08:41:00.226654036 +0100
29 +++ wfmath/point.h 2012-10-31 08:41:52.353918234 +0100
30 @@ -32,6 +32,8 @@
31 #include <memory>
32 #include <iosfwd>
33
34 +#include <cmath>
35 +
36 namespace WFMath {
37
38 template<const int dim>