diff options
author | mark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2011-10-11 16:47:47 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2011-10-11 16:47:47 +0000 |
commit | 3473acb12e7b70af11f2ee06f6a8eb97a62d13b2 (patch) | |
tree | a3aa07d2778ceb338c7ad70ad85a12c95980148c | |
parent | Extract constants from Breakpad.h. (diff) | |
download | breakpad-3473acb12e7b70af11f2ee06f6a8eb97a62d13b2.tar.xz |
#include BreakpadDefines.h as "BreakpadDefines.h" and not
<Breakpad/BreakpadDefines.h>.
During the build of Breakpad itself (especially in Chromium), there is no
Breakpad.framework/Headers in which to locate BreakpadDefines.h, so the
framework-style #include of <Breakpad/BreakpadDefines.h> is not able to find
anything to #include. Using the "BreakpadDefines.h" form should always locate
this file next to Breakpad.h whether it's in the framework or in the source
tree.
This fixes a Chromium build regression caused by Breakpad r856.
Review URL: http://breakpad.appspot.com/313001
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@857 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r-- | src/client/mac/Framework/Breakpad.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/mac/Framework/Breakpad.h b/src/client/mac/Framework/Breakpad.h index 39259cd9..ab2854ed 100644 --- a/src/client/mac/Framework/Breakpad.h +++ b/src/client/mac/Framework/Breakpad.h @@ -54,7 +54,7 @@ extern "C" { #include <CoreFoundation/CoreFoundation.h> #include <Foundation/Foundation.h> -#include <Breakpad/BreakpadDefines.h> +#include "BreakpadDefines.h" // Optional user-defined function to dec to decide if we should handle // this crash or forward it along. |