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-board/freedoko/files: freedoko-0.7.8-gcc45.patch
Date: Tue, 01 Jun 2010 10:03:31
Message-Id: 20100601100328.C0D872C3ED@corvid.gentoo.org
1 tupone 10/06/01 10:03:28
2
3 Added: freedoko-0.7.8-gcc45.patch
4 Log:
5 Fix build with gcc-4.5 Bug #322203
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 games-board/freedoko/files/freedoko-0.7.8-gcc45.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/freedoko/files/freedoko-0.7.8-gcc45.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/freedoko/files/freedoko-0.7.8-gcc45.patch?rev=1.1&content-type=text/plain
13
14 Index: freedoko-0.7.8-gcc45.patch
15 ===================================================================
16 --- src/game/gameplay_action.cpp.old 2010-06-01 10:50:55.000000000 +0200
17 +++ src/game/gameplay_action.cpp 2010-06-01 10:51:23.000000000 +0200
18 @@ -268,7 +268,7 @@
19 **
20 ** @version 0.6.8
21 **/
22 -GameplayAction::GameplayAction&
23 +GameplayAction&
24 GameplayAction::operator=(GameplayAction const& action)
25 {
26 this->type = action.type;
27 --- src/game/gameplay_actions/pure.cpp.old 2010-06-01 10:53:02.000000000 +0200
28 +++ src/game/gameplay_actions/pure.cpp 2010-06-01 10:53:54.000000000 +0200
29 @@ -90,7 +90,7 @@
30 **
31 ** @version 0.7.3
32 **/
33 -GameplayAction::Pure::Pure&
34 +GameplayAction::Pure&
35 GameplayAction::Pure::operator=(Pure const& action)
36 {
37 this->GameplayAction::operator=(action);
38 --- src/game/gameplay_actions/player1.cpp.old 2010-06-01 10:55:59.000000000 +0200
39 +++ src/game/gameplay_actions/player1.cpp 2010-06-01 10:56:10.000000000 +0200
40 @@ -103,7 +103,7 @@
41 **
42 ** @version 0.7.3
43 **/
44 -GameplayAction::Player1::Player1&
45 +GameplayAction::Player1&
46 GameplayAction::Player1::operator=(Player1 const& action)
47 {
48 this->GameplayAction::operator=(action);
49 --- src/game/gameplay_actions/base_cards.cpp.old 2010-06-01 10:56:47.000000000 +0200
50 +++ src/game/gameplay_actions/base_cards.cpp 2010-06-01 10:56:59.000000000 +0200
51 @@ -142,7 +142,7 @@
52 **
53 ** @version 0.7.3
54 **/
55 -GameplayAction::BaseCards::BaseCards&
56 +GameplayAction::BaseCards&
57 GameplayAction::BaseCards::operator=(BaseCards const& poverty_shift)
58 {
59 this->Player1::operator=(poverty_shift);
60 --- src/game/gameplay_actions/reservation.cpp.old 2010-06-01 10:57:46.000000000 +0200
61 +++ src/game/gameplay_actions/reservation.cpp 2010-06-01 10:57:59.000000000 +0200
62 @@ -110,7 +110,7 @@
63 **
64 ** @version 0.7.3
65 **/
66 -GameplayAction::Reservation::Reservation&
67 +GameplayAction::Reservation&
68 GameplayAction::Reservation::operator=(Reservation const& reservation)
69 {
70 this->Player1::operator=(reservation);
71 --- src/game/gameplay_actions/marriage.cpp.old 2010-06-01 10:58:29.000000000 +0200
72 +++ src/game/gameplay_actions/marriage.cpp 2010-06-01 10:58:43.000000000 +0200
73 @@ -121,7 +121,7 @@
74 **
75 ** @version 0.7.1
76 **/
77 -GameplayAction::Marriage::Marriage&
78 +GameplayAction::Marriage&
79 GameplayAction::Marriage::operator=(Marriage const& marriage)
80 {
81 this->Player1::operator=(marriage);
82 --- src/game/gameplay_actions/genscher.cpp.old 2010-06-01 10:59:12.000000000 +0200
83 +++ src/game/gameplay_actions/genscher.cpp 2010-06-01 10:59:22.000000000 +0200
84 @@ -120,7 +120,7 @@
85 **
86 ** @version 0.7.1
87 **/
88 -GameplayAction::Genscher::Genscher&
89 +GameplayAction::Genscher&
90 GameplayAction::Genscher::operator=(Genscher const& genscher)
91 {
92 this->Player1::operator=(genscher);
93 --- src/game/gameplay_actions/announcement.cpp.old 2010-06-01 10:59:46.000000000 +0200
94 +++ src/game/gameplay_actions/announcement.cpp 2010-06-01 10:59:58.000000000 +0200
95 @@ -132,7 +132,7 @@
96 **
97 ** @version 0.7.1
98 **/
99 -GameplayAction::Announcement::Announcement&
100 +GameplayAction::Announcement&
101 GameplayAction::Announcement::operator=(Announcement const& announcement)
102 {
103 this->Player1::operator=(announcement);
104 --- src/game/gameplay_actions/card_played.cpp.old 2010-06-01 11:00:28.000000000 +0200
105 +++ src/game/gameplay_actions/card_played.cpp 2010-06-01 11:00:40.000000000 +0200
106 @@ -178,7 +178,7 @@
107 **
108 ** @version 0.7.3
109 **/
110 -GameplayAction::CardPlayed::CardPlayed&
111 +GameplayAction::CardPlayed&
112 GameplayAction::CardPlayed::operator=(CardPlayed const& card_played)
113 {
114 this->Player1::operator=(card_played);
115 --- src/game/gameplay_actions/trick_full.cpp.old 2010-06-01 11:01:10.000000000 +0200
116 +++ src/game/gameplay_actions/trick_full.cpp 2010-06-01 11:01:20.000000000 +0200
117 @@ -224,7 +224,7 @@
118 **
119 ** @version 0.7.1
120 **/
121 -GameplayAction::TrickFull::TrickFull&
122 +GameplayAction::TrickFull&
123 GameplayAction::TrickFull::operator=(TrickFull const& trick_full)
124 {
125 this->GameplayAction::operator=(trick_full);
126 --- src/game/gameplay_actions/check.cpp.old 2010-06-01 11:01:56.000000000 +0200
127 +++ src/game/gameplay_actions/check.cpp 2010-06-01 11:02:07.000000000 +0200
128 @@ -104,7 +104,7 @@
129 **
130 ** @version 0.7.6
131 **/
132 -GameplayAction::Check::Check&
133 +GameplayAction::Check&
134 GameplayAction::Check::operator=(Check const& action)
135 {
136 this->Pure::operator=(action);