Gentoo Archives: gentoo-commits

From: "Mark Loeser (halcy0n)" <halcy0n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/fam/files: fam-2.7.0-gcc43.patch
Date: Fri, 09 May 2008 02:59:43
Message-Id: E1JuHbj-0005oC-Dp@stork.gentoo.org
1 halcy0n 08/05/09 01:41:11
2
3 Added: fam-2.7.0-gcc43.patch
4 Log:
5 Patch to fix building with gcc-4.3 by Martin Väth <vaeth AT mathematik.uni-wuerzburg DOT de>; bug #215475
6 (Portage version: 2.1.5_rc7)
7
8 Revision Changes Path
9 1.1 app-admin/fam/files/fam-2.7.0-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/fam/files/fam-2.7.0-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/fam/files/fam-2.7.0-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: fam-2.7.0-gcc43.patch
15 ===================================================================
16 --- lib/Client.c++
17 +++ lib/Client.c++
18 @@ -34,7 +34,7 @@
19 #include <syslog.h>
20 #include <errno.h>
21
22 -#include <iostream.h>
23 +#include <iostream>
24
25 #include "fam.h"
26 #include "Client.h"
27 --- src/DNotify.c++
28 +++ src/DNotify.c++
29 @@ -31,6 +31,7 @@
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <libgen.h>
33 +#include <cstdlib>
34
35 #include "DNotify.h"
36
37 --- src/IMon.c++
38 +++ src/IMon.c++
39 @@ -40,7 +40,7 @@
40 #include "Interest.h"
41 #include "Log.h"
42 #include "Scheduler.h"
43 -#include "alloc.h"
44 +#include <memory>
45
46 int IMon::imonfd = -2;
47 IMon::EventHandler IMon::ehandler = NULL;
48
49
50
51 --
52 gentoo-commits@l.g.o mailing list