blob: a2211dce086996ee81f883d04886c63c0fdc85f2 (
plain)
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
|
diff -Naur audiere/src/audiere.h audiere.tpg/src/audiere.h
--- audiere/src/audiere.h 2004-11-28 01:41:59.000000000 +0000
+++ audiere.tpg/src/audiere.h 2008-06-03 17:39:43.000000000 +0000
@@ -29,6 +29,13 @@
#include <vector>
#include <string>
+/* Headers for gcc-4.3 */
+
+/* strlen, strchr, etc. */
+#include <cstring>
+/* getenv, atexit, etc. */
+#include <cstdlib>
+
#ifdef _MSC_VER
#pragma warning(disable : 4786)
#endif
diff -Naur audiere/src/debug.h audiere.tpg/src/debug.h
--- audiere/src/debug.h 2004-04-09 09:33:50.000000000 +0000
+++ audiere.tpg/src/debug.h 2008-06-03 17:39:43.000000000 +0000
@@ -6,6 +6,9 @@
#include <stdio.h>
#include <string>
+/* Headers for gcc-4.3 */
+#include <cstring>
+#include <cstdlib>
namespace audiere {
diff -Naur audiere/src/utility.cpp b/src/utility.cpp
index f49c028..28fefc8 100644
--- audiere/src/utility.cpp 2004-04-09 09:33:50.000000000 +0000
+++ audiere.tpg/src/utility.cpp 2008-06-03 17:39:43.000000000 +0000
@@ -2,7 +2,7 @@
#pragma warning(disable : 4786)
#endif
-
+#include <cstdio>
#include <ctype.h>
#include "utility.h"
#include "internal.h"
|