Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F72C9BAA for ; Wed, 11 Jul 2012 01:40:33 +0000 (UTC) Received: (qmail 58797 invoked by uid 500); 11 Jul 2012 01:40:33 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 58760 invoked by uid 500); 11 Jul 2012 01:40:33 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 58749 invoked by uid 99); 11 Jul 2012 01:40:33 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2012 01:40:33 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id EA8A8DA40; Wed, 11 Jul 2012 01:40:32 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: shazron@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: ios commit: Fixes CB-989: dyld: Symbol not found: _NSURLIsExcludedFromBackupKey Message-Id: <20120711014032.EA8A8DA40@tyr.zones.apache.org> Date: Wed, 11 Jul 2012 01:40:32 +0000 (UTC) Updated Branches: refs/heads/master 27b676d3d -> a12f6c9c2 Fixes CB-989: dyld: Symbol not found: _NSURLIsExcludedFromBackupKey Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/a12f6c9c Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/a12f6c9c Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/a12f6c9c Branch: refs/heads/master Commit: a12f6c9c2b64b5de8ac76e40f078e5bba632fec8 Parents: 27b676d Author: Shazron Abdullah Authored: Tue Jul 10 18:40:24 2012 -0700 Committer: Shazron Abdullah Committed: Tue Jul 10 18:40:24 2012 -0700 ---------------------------------------------------------------------- CordovaLib/Classes/CDVFile.m | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/a12f6c9c/CordovaLib/Classes/CDVFile.m ---------------------------------------------------------------------- diff --git a/CordovaLib/Classes/CDVFile.m b/CordovaLib/Classes/CDVFile.m index bfcc642..a6092bd 100644 --- a/CordovaLib/Classes/CDVFile.m +++ b/CordovaLib/Classes/CDVFile.m @@ -28,6 +28,10 @@ extern NSString * const NSURLIsExcludedFromBackupKey __attribute__((weak_import)); +#ifndef __IPHONE_5_1 + NSString * const NSURLIsExcludedFromBackupKey = @"NSURLIsExcludedFromBackupKey"; +#endif + @implementation CDVFile @synthesize appDocsPath, appLibraryPath, appTempPath, persistentPath, temporaryPath, userHasAllowed;