Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-kids/gmult/files: gmult-5.3-gcc43.patch
Date: Fri, 02 May 2008 19:35:38
Message-Id: E1Js12d-0007PD-S7@stork.gentoo.org
1 nyhm 08/05/02 19:35:35
2
3 Added: gmult-5.3-gcc43.patch
4 Log:
5 Fix building with gcc-4.3
6 (Portage version: 2.1.5_rc6)
7
8 Revision Changes Path
9 1.1 games-kids/gmult/files/gmult-5.3-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/gmult/files/gmult-5.3-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/gmult/files/gmult-5.3-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: gmult-5.3-gcc43.patch
15 ===================================================================
16 --- gmult/DigitChooser.cpp
17 +++ gmult/DigitChooser.cpp
18 @@ -19,6 +19,7 @@
19 #include "DigitChooser.h"
20 #include "config.h"
21 #include "gettext.h"
22 +#include <cstring>
23
24 DigitChooser::DigitChooser (Gtk::Window &parent, MultPuzzle &puzzle, char letter)
25 : Gtk::Dialog ("", parent, true, false)
26 --- gmult/GtkMult.cpp
27 +++ gmult/GtkMult.cpp
28 @@ -3,6 +3,7 @@
29 #include "config.h"
30 #include "gettext.h"
31
32 +#include <cstring>
33 #include <gtkmm/icontheme.h>
34
35 GtkMult::GtkMult (void)
36 --- gmult/GtkMultTable.cpp
37 +++ gmult/GtkMultTable.cpp
38 @@ -22,7 +22,8 @@
39 #include "DigitChooser.h"
40 #include "config.h"
41 #include "gettext.h"
42 -#include <ctype.h>
43 +#include <cctype>
44 +#include <cstring>
45
46 GtkMultTable::GtkMultTable (MultPuzzle *p)
47 : Gtk::Table (1, 1, TRUE), puzzle (p)
48
49
50
51 --
52 gentoo-commits@l.g.o mailing list