From 47e34e6f07158af7d668037b8b24600b085cf056 Mon Sep 17 00:00:00 2001 From: "qsr@chromium.org" Date: Mon, 9 Jul 2012 12:38:15 +0000 Subject: Fix compilation for iOS on XCode 4.5 Compilation directive for PPC was using MAC_OS_X_VERSION_MIN_REQUIRED. This is not correct, as the latest SDKs allow to compile for older version of Mac OS, but don't contain the ppc headers. Changing the directive to use MAC_OS_X_VERSION_MAX_ALLOWED instead. Moreover, uploader.mm was including pwd.h that was not used and doesn't exist on the latest iOS SDK. Review URL: https://breakpad.appspot.com/412002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@982 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/client/mac/sender/uploader.mm | 1 - 1 file changed, 1 deletion(-) (limited to 'src/client/mac/sender') diff --git a/src/client/mac/sender/uploader.mm b/src/client/mac/sender/uploader.mm index 03b4051b..b6da8214 100644 --- a/src/client/mac/sender/uploader.mm +++ b/src/client/mac/sender/uploader.mm @@ -28,7 +28,6 @@ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #import -#import #import #include #import -- cgit v1.2.1