aboutsummaryrefslogtreecommitdiff
path: root/src/common/linux
diff options
context:
space:
mode:
authornealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-11-17 18:45:20 +0000
committernealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-11-17 18:45:20 +0000
commitd9d863e153d12532fc85bd8b44bc47f079ed064c (patch)
treec396852f43a6dec3b6e5413141984ed72da477ff /src/common/linux
parentFix assert failure in dump_syms caused by binary linked with gold. (diff)
downloadbreakpad-d9d863e153d12532fc85bd8b44bc47f079ed064c.tar.xz
Add specific curl headers to facilitate building on Ubuntu Lucid
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@732 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/linux')
-rw-r--r--src/common/linux/libcurl_wrapper.cc3
-rw-r--r--src/common/linux/libcurl_wrapper.h4
2 files changed, 2 insertions, 5 deletions
diff --git a/src/common/linux/libcurl_wrapper.cc b/src/common/linux/libcurl_wrapper.cc
index e21a43db..8b61aa09 100644
--- a/src/common/linux/libcurl_wrapper.cc
+++ b/src/common/linux/libcurl_wrapper.cc
@@ -27,9 +27,6 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#include <curl/curl.h>
-#include <curl/easy.h>
-#include <curl/types.h>
#include <dlfcn.h>
#include <iostream>
diff --git a/src/common/linux/libcurl_wrapper.h b/src/common/linux/libcurl_wrapper.h
index ce549889..3e53e616 100644
--- a/src/common/linux/libcurl_wrapper.h
+++ b/src/common/linux/libcurl_wrapper.h
@@ -30,11 +30,11 @@
// A wrapper for libcurl to do HTTP Uploads, to support easy mocking
// and unit testing of the HTTPUpload class.
-#include <curl/curl.h>
-
#include <string>
#include <map>
+#include "third_party/curl/curl.h"
+
namespace google_breakpad {
class LibcurlWrapper {
public: