Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/tse3/files: tse3-0.3.1+gcc-4.3.patch
Date: Mon, 09 Jun 2008 11:42:40
Message-Id: E1K5fli-00021I-JE@stork.gentoo.org
1 flameeyes 08/06/09 11:42:34
2
3 Added: tse3-0.3.1+gcc-4.3.patch
4 Log:
5 Add patch to build with GCC 4.3. Thanks to Marek Miller in bug #225335.
6 (Portage version: 2.1.5.4)
7
8 Revision Changes Path
9 1.1 media-libs/tse3/files/tse3-0.3.1+gcc-4.3.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tse3/files/tse3-0.3.1+gcc-4.3.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tse3/files/tse3-0.3.1+gcc-4.3.patch?rev=1.1&content-type=text/plain
13
14 Index: tse3-0.3.1+gcc-4.3.patch
15 ===================================================================
16 --- src/tse3/Serializable.h.orig 2008-06-08 12:17:05.000000000 +0200
17 +++ src/tse3/Serializable.h 2008-06-08 12:17:27.000000000 +0200
18 @@ -20,6 +20,7 @@
19 #include <iosfwd>
20 #include <iomanip>
21 #include <cstddef>
22 +#include <fstream>
23
24 namespace TSE3
25 {
26
27 --- src/tse3/TSE2MDL.h.orig 2008-06-08 12:17:41.000000000 +0200
28 +++ src/tse3/TSE2MDL.h 2008-06-08 12:18:02.000000000 +0200
29 @@ -22,6 +22,7 @@
30 #include <string>
31 #include <iostream>
32 #include <cstddef>
33 +#include <cstring>
34
35 namespace TSE3
36 {
37
38 --- src/tse3/MidiFile.h.orig 2008-06-08 12:18:26.000000000 +0200
39 +++ src/tse3/MidiFile.h 2008-06-08 12:18:42.000000000 +0200
40 @@ -25,6 +25,7 @@
41 #include <string>
42 #include <iosfwd>
43 #include <cstddef>
44 +#include <cstring>
45
46 namespace TSE3
47 {
48 --- src/examples/recording/recording.cpp.orig 2008-06-08 12:18:56.000000000 +0200
49 +++ src/examples/recording/recording.cpp 2008-06-08 12:19:18.000000000 +0200
50 @@ -26,6 +26,7 @@
51 *
52 **************************************************************/
53
54 +#include <cstdlib>
55 #include <iostream>
56
57 // Used in step 1
58
59 --- src/tse3play/tse3play.h.orig 2008-06-08 12:19:34.000000000 +0200
60 +++ src/tse3play/tse3play.h 2008-06-08 12:19:53.000000000 +0200
61 @@ -19,6 +19,7 @@
62
63 #include <string>
64 #include <list>
65 +#include <cstdlib>
66
67 #include "tse3/Transport.h"
68
69 --- src/tse3/plt/Alsa-0.9.cpp.orig 2008-06-08 12:39:53.000000000 +0200
70 +++ src/tse3/plt/Alsa-0.9.cpp 2008-06-08 12:40:25.000000000 +0200
71 @@ -25,12 +25,11 @@
72 #define HAVE_SYS_ASOUNDLIB_H
73 #endif
74
75 -#define _GNU_SOURCE
76 #include <sys/stat.h>
77 #include <errno.h>
78 #include <alloca.h>
79 #if HAVE_ALSA_ASOUNDLIB_H
80 -#include <sys/asoundlib.h>
81 +#include <alsa/asoundlib.h>
82 #elif HAVE_SYS_ASOUNDLIB_H
83 #include <sys/asoundlib.h>
84 #endif
85
86 --- src/tse3/plt/OSS.h.orig 2008-06-08 12:45:46.000000000 +0200
87 +++ src/tse3/plt/OSS.h 2008-06-08 12:46:06.000000000 +0200
88 @@ -21,6 +21,7 @@
89
90 #include <string>
91 #include <list>
92 +#include <cstring>
93
94 #ifdef HAVE_CONFIG_H
95 #include "config.h"
96
97
98
99 --
100 gentoo-commits@l.g.o mailing list