blob: 188e6e5d88bbd1bdadde18933ba273239ac81eb2 (
plain) (
blame)
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
|
Explicitly include certain things, because g++48 requires it.
-mi
--- mcop/tcpconnection.cc 2008-02-13 04:35:23.000000000 -0500
+++ mcop/tcpconnection.cc 2013-04-24 18:32:16.000000000 -0400
@@ -36,4 +36,5 @@
#include "debug.h"
#include <stdlib.h>
+#include <string.h>
using namespace std;
--- mcop/unixconnection.cc 2008-02-13 04:35:23.000000000 -0500
+++ mcop/unixconnection.cc 2013-04-24 18:32:25.000000000 -0400
@@ -30,4 +30,5 @@
#include <errno.h>
#include <stdlib.h>
+#include <string.h>
using namespace std;
--- mcop/unixserver.cc 2007-10-08 05:47:08.000000000 -0400
+++ mcop/unixserver.cc 2013-04-24 18:33:33.000000000 -0400
@@ -41,4 +41,5 @@
#include <stdio.h>
#include <errno.h>
+#include <string.h>
using namespace std;
--- mcop/mcoputils.cc 2008-02-13 04:35:23.000000000 -0500
+++ mcop/mcoputils.cc 2013-04-24 18:35:58.000000000 -0400
@@ -24,4 +24,5 @@
#include "mcopconfig.h"
#include "debug.h"
+#include <limits.h>
#include <pwd.h>
#include <sys/stat.h>
|