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
81
82
83
84
85
86
87
|
--- common.c 2003/02/08 01:42:31 1.1
+++ common.c 2003/02/08 01:53:36
@@ -24,7 +24,7 @@
#include <stdio.h>
#include <stdlib.h>
-#if defined(SOLARIS) || defined(__WIN32__)
+#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__)
#include <string.h>
#else
#include <strings.h>
--- instrum.c 2003/02/08 01:42:31 1.1
+++ instrum.c 2003/02/08 01:53:50
@@ -25,7 +25,7 @@
#include <stdio.h>
-#if defined(SOLARIS) || defined(__WIN32__)
+#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__)
#include <string.h>
#else
#include <strings.h>
--- playmidi.c 2003/02/08 01:42:31 1.1
+++ playmidi.c 2003/02/08 01:54:18
@@ -27,7 +27,7 @@
#endif
#include <stdlib.h>
-#if defined(SOLARIS) || defined(__WIN32__)
+#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__)
# include <string.h>
#else
#include <strings.h>
--- raw_a.c 2003/02/08 01:42:31 1.1
+++ raw_a.c 2003/02/08 01:54:38
@@ -35,6 +35,7 @@
#ifdef __FreeBSD__
#include <stdio.h>
+#include <string.h>
#endif
#include "config.h"
--- readmidi.c 2003/02/08 01:42:31 1.1
+++ readmidi.c 2003/02/08 01:53:19
@@ -23,7 +23,7 @@
#include <stdlib.h>
#include <errno.h>
-#if defined(SOLARIS) | defined(__WIN32__)
+#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__)
# include <string.h>
#else
#include <strings.h>
--- timidity.c 2003/02/08 01:42:31 1.1
+++ timidity.c 2003/02/08 01:54:51
@@ -21,7 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
-#if defined(SOLARIS) || defined(__WIN32__)
+#if defined(SOLARIS) || defined(__WIN32__) || defined(__FreeBSD__)
#include <string.h>
#else
#include <strings.h>
--- wav2pat.c 2003/02/08 01:42:31 1.1
+++ wav2pat.c 2003/02/08 01:55:29
@@ -28,7 +28,7 @@
#include <unistd.h>
#include <fcntl.h>
-#ifdef SOLARIS
+#if defined(SOLARIS) || defined(__FreeBSD__)
#include <string.h>
#else
#include <strings.h>
--- wave_a.c 2003/02/08 01:42:31 1.1
+++ wave_a.c 2003/02/08 01:55:45
@@ -35,6 +35,7 @@
#ifdef __FreeBSD__
#include <stdio.h>
+#include <string.h>
#endif
#include "config.h"
|