summaryrefslogtreecommitdiff
blob: ac01466808433c14f460c09f7b74e47a62029ede (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
http://code.google.com/p/libproxy/source/detail?r=833
http://code.google.com/p/libproxy/issues/detail?id=173
https://bugs.gentoo.org/show_bug.cgi?id=412363

--- a/libproxy/url.cpp
+++ b/libproxy/url.cpp
@@ -33,6 +33,7 @@
 #include <cstdlib>    // For atoi()
 #include <sys/stat.h> // For stat()
 #include <algorithm> // For transform()
+#include <unistd.h>  // For read() close()
 
 #ifdef WIN32
 #include <io.h>
--- a/libproxy/modules/pacrunner_webkit.cpp
+++ b/libproxy/modules/pacrunner_webkit.cpp
@@ -18,6 +18,7 @@
  ******************************************************************************/
 
 #include "../extension_pacrunner.hpp"
+#include <unistd.h> // gethostname
 using namespace libproxy;
 
 #ifdef __APPLE__
--- a/libproxy/modules/pacrunner_natus.cpp
+++ b/libproxy/modules/pacrunner_natus.cpp
@@ -18,6 +18,7 @@
  ******************************************************************************/
 
 #include "../extension_pacrunner.hpp"
+#include <unistd.h> // gethostname
 using namespace libproxy;
 
 #define I_ACKNOWLEDGE_THAT_NATUS_IS_NOT_STABLE
--- a/libproxy/modules/pacrunner_mozjs.cpp
+++ b/libproxy/modules/pacrunner_mozjs.cpp
@@ -18,6 +18,7 @@
  ******************************************************************************/
 
 #include <cstring> // ?
+#include <unistd.h> // gethostname
 
 #include "../extension_pacrunner.hpp"
 using namespace libproxy;
--- a/libproxy/modules/config_sysconfig.cpp
+++ b/libproxy/modules/config_sysconfig.cpp
@@ -21,7 +21,10 @@
 #include <cstdlib>
 #include <map>
 #include <fstream>
+#include <unistd.h>
+#include <sys/types.h>
 
+
 #include "../extension_config.hpp"
 using namespace libproxy;
 using std::map;