1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
--- src/tse3/Serializable.h.orig 2008-06-08 12:17:05.000000000 +0200
+++ src/tse3/Serializable.h 2008-06-08 12:17:27.000000000 +0200
@@ -20,6 +20,7 @@
#include <iosfwd>
#include <iomanip>
#include <cstddef>
+#include <fstream>
namespace TSE3
{
--- src/tse3/TSE2MDL.h.orig 2008-06-08 12:17:41.000000000 +0200
+++ src/tse3/TSE2MDL.h 2008-06-08 12:18:02.000000000 +0200
@@ -22,6 +22,7 @@
#include <string>
#include <iostream>
#include <cstddef>
+#include <cstring>
namespace TSE3
{
--- src/tse3/MidiFile.h.orig 2008-06-08 12:18:26.000000000 +0200
+++ src/tse3/MidiFile.h 2008-06-08 12:18:42.000000000 +0200
@@ -25,6 +25,7 @@
#include <string>
#include <iosfwd>
#include <cstddef>
+#include <cstring>
namespace TSE3
{
--- src/examples/recording/recording.cpp.orig 2008-06-08 12:18:56.000000000 +0200
+++ src/examples/recording/recording.cpp 2008-06-08 12:19:18.000000000 +0200
@@ -26,6 +26,7 @@
*
**************************************************************/
+#include <cstdlib>
#include <iostream>
// Used in step 1
--- src/tse3play/tse3play.h.orig 2008-06-08 12:19:34.000000000 +0200
+++ src/tse3play/tse3play.h 2008-06-08 12:19:53.000000000 +0200
@@ -19,6 +19,7 @@
#include <string>
#include <list>
+#include <cstdlib>
#include "tse3/Transport.h"
--- src/tse3/plt/Alsa-0.9.cpp.orig 2008-06-08 12:39:53.000000000 +0200
+++ src/tse3/plt/Alsa-0.9.cpp 2008-06-08 12:40:25.000000000 +0200
@@ -25,12 +25,11 @@
#define HAVE_SYS_ASOUNDLIB_H
#endif
-#define _GNU_SOURCE
#include <sys/stat.h>
#include <errno.h>
#include <alloca.h>
#if HAVE_ALSA_ASOUNDLIB_H
-#include <sys/asoundlib.h>
+#include <alsa/asoundlib.h>
#elif HAVE_SYS_ASOUNDLIB_H
#include <sys/asoundlib.h>
#endif
--- src/tse3/plt/OSS.h.orig 2008-06-08 12:45:46.000000000 +0200
+++ src/tse3/plt/OSS.h 2008-06-08 12:46:06.000000000 +0200
@@ -21,6 +21,7 @@
#include <string>
#include <list>
+#include <cstring>
#ifdef HAVE_CONFIG_H
#include "config.h"
|