aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2008-02-24 21:04:51 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2008-02-24 21:04:51 +0000
commit2c2ae2854198ca20c48e62c05816fbaacdd474c7 (patch)
tree2ab4bbf0a7ec554b9e756157b5d04408509c82ed
parentUse swprintf_s for VC8 or newer. r=mento (diff)
downloadbreakpad-2c2ae2854198ca20c48e62c05816fbaacdd474c7.tar.xz
issue 238 - missing includes compiling with gcc 4.3. patch by taras glek, r=me
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@240 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r--src/client/linux/handler/exception_handler.cc1
-rw-r--r--src/client/linux/handler/linux_thread.cc1
-rw-r--r--src/client/linux/handler/minidump_generator.cc1
-rw-r--r--src/common/linux/dump_symbols.cc2
-rw-r--r--src/common/string_conversion.cc1
5 files changed, 6 insertions, 0 deletions
diff --git a/src/client/linux/handler/exception_handler.cc b/src/client/linux/handler/exception_handler.cc
index e23f0f5f..b87acf4d 100644
--- a/src/client/linux/handler/exception_handler.cc
+++ b/src/client/linux/handler/exception_handler.cc
@@ -37,6 +37,7 @@
#include <cassert>
#include <cstdlib>
#include <ctime>
+#include <linux/limits.h>
#include "client/linux/handler/exception_handler.h"
#include "common/linux/guid_creator.h"
diff --git a/src/client/linux/handler/linux_thread.cc b/src/client/linux/handler/linux_thread.cc
index 2fe103e4..c8ac4926 100644
--- a/src/client/linux/handler/linux_thread.cc
+++ b/src/client/linux/handler/linux_thread.cc
@@ -37,6 +37,7 @@
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
+#include <string.h>
#include <algorithm>
#include <cassert>
diff --git a/src/client/linux/handler/minidump_generator.cc b/src/client/linux/handler/minidump_generator.cc
index 8d4d1315..bc4d213a 100644
--- a/src/client/linux/handler/minidump_generator.cc
+++ b/src/client/linux/handler/minidump_generator.cc
@@ -40,6 +40,7 @@
#include <cstdlib>
#include <ctime>
+#include <string.h>
#include "common/linux/file_id.h"
#include "client/linux/handler/linux_thread.h"
diff --git a/src/common/linux/dump_symbols.cc b/src/common/linux/dump_symbols.cc
index 1af940d6..b523c5d8 100644
--- a/src/common/linux/dump_symbols.cc
+++ b/src/common/linux/dump_symbols.cc
@@ -40,9 +40,11 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
+#include <algorithm>
#include <functional>
#include <vector>
+#include <string.h>
#include "common/linux/dump_symbols.h"
#include "common/linux/file_id.h"
diff --git a/src/common/string_conversion.cc b/src/common/string_conversion.cc
index 3e4d8e88..50054ebc 100644
--- a/src/common/string_conversion.cc
+++ b/src/common/string_conversion.cc
@@ -30,6 +30,7 @@
#include "common/convert_UTF.h"
#include "processor/scoped_ptr.h"
#include "common/string_conversion.h"
+#include <string.h>
namespace google_breakpad {