Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-engines/kwest/files: kwest-1.1.1-gcc43.patch kwest-1.0-gcc43.patch
Date: Tue, 20 Jan 2009 15:41:09
Message-Id: E1LPIiv-0003OH-Rv@stork.gentoo.org
1 tupone 09/01/20 15:41:05
2
3 Added: kwest-1.1.1-gcc43.patch kwest-1.0-gcc43.patch
4 Log:
5 Fix gcc-4.3 bug #251132
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r7 x86_64)
7
8 Revision Changes Path
9 1.1 games-engines/kwest/files/kwest-1.1.1-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/kwest/files/kwest-1.1.1-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/kwest/files/kwest-1.1.1-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: kwest-1.1.1-gcc43.patch
15 ===================================================================
16 --- src/kwestview.cpp.old 2009-01-20 16:19:46.000000000 +0100
17 +++ src/kwestview.cpp 2009-01-20 16:19:58.000000000 +0100
18 @@ -26,7 +26,7 @@
19 #include "frotz/frotz.h"
20 #include "k_frotz.h"
21
22 -#include <iostream.h>
23 +#include <iostream>
24
25 extern "C" bool is_terminator(zchar);
26 extern "C" int completion(const zchar *, zchar *);
27
28
29
30
31 1.1 games-engines/kwest/files/kwest-1.0-gcc43.patch
32
33 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/kwest/files/kwest-1.0-gcc43.patch?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/kwest/files/kwest-1.0-gcc43.patch?rev=1.1&content-type=text/plain
35
36 Index: kwest-1.0-gcc43.patch
37 ===================================================================
38 --- kwest/kwestview.cpp.old 2009-01-20 15:29:26.000000000 +0100
39 +++ kwest/kwestview.cpp 2009-01-20 15:29:41.000000000 +0100
40 @@ -26,7 +26,7 @@
41 #include "frotz.h"
42 #include "k_frotz.h"
43
44 -#include <iostream.h>
45 +#include <iostream>
46
47 extern "C" bool is_terminator(zchar);
48 extern "C" int completion(const zchar *, zchar *);
49 --- kwest/k_init.cpp.old 2009-01-20 15:37:26.000000000 +0100
50 +++ kwest/k_init.cpp 2009-01-20 15:38:04.000000000 +0100
51 @@ -154,7 +154,7 @@
52 *
53 */
54
55 -#include <iostream.h>
56 +#include <iostream>
57
58 void os_init_screen()
59 {