blob: c047badeba3e6df0a213c646834c6226af618dd9 (
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
|
--- kore/metainfo.cpp.orig 2002-05-20 16:26:01.000000000 +0200
+++ kore/metainfo.cpp 2002-11-02 21:04:32.000000000 +0100
@@ -1,7 +1,11 @@
#include <kore/metainfo.h>
#include <vector>
#include <iostream.h>
+#if (__GNUC__<3)
#include <hash_map>
+#else
+#include <backward/hash_map.h>
+#endif
using namespace kore;
using namespace std;
--- kore/componenttrader.cpp.orig 2002-05-20 16:26:01.000000000 +0200
+++ kore/componenttrader.cpp 2002-11-02 21:04:56.000000000 +0100
@@ -8,7 +8,11 @@
#include <strstream>
//#ifdef _WIN32
+#if (__GNUC__<3)
#include <hash_map>
+#else
+#include <backward/hash_map.h>
+#endif
#include <vector>
#include <set>
//#else
--- include/kore/metainfo.h.orig 2002-05-20 16:26:01.000000000 +0200
+++ include/kore/metainfo.h 2002-11-02 21:05:19.000000000 +0100
@@ -7,7 +7,11 @@
#include <map>
#include <iostream.h>
#else
+#if (__GNUC__<3)
#include <hash_map>
+#else
+#include <backward/hash_map.h>
+#endif
#endif
#include <set>
|