diff --git a/Keychain/Keychain.xcodeproj/project.pbxproj b/Keychain/Keychain.xcodeproj/project.pbxproj index 357b596..c7f8e47 100644 --- a/Keychain/Keychain.xcodeproj/project.pbxproj +++ b/Keychain/Keychain.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 45; + objectVersion = 46; objects = { /* Begin PBXAggregateTarget section */ @@ -486,7 +486,7 @@ 757A985D0CB98BF300513299 /* English */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.strings; name = English; path = "English.lproj/Extension Format Constants.strings"; sourceTree = ""; }; 757A985F0CB98BF300513299 /* English */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.strings; name = English; path = "English.lproj/Extension Format Names.strings"; sourceTree = ""; }; 757A98610CB98BF300513299 /* English */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.strings; name = English; path = "English.lproj/GUID Names.strings"; sourceTree = ""; }; - 757A98630CB98BF300513299 /* English */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 757A98630CB98BF300513299 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; 757A98650CB98BF300513299 /* English */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.strings; name = English; path = "English.lproj/Key Attribute Constants.strings"; sourceTree = ""; }; 757A98670CB98BF300513299 /* English */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.strings; name = English; path = "English.lproj/Key Attribute Names.strings"; sourceTree = ""; }; 757A98690CB98BF300513299 /* English */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.strings; name = English; path = "English.lproj/Key Class Constants.strings"; sourceTree = ""; }; @@ -1230,8 +1230,11 @@ /* Begin PBXProject section */ 0867D690FE84028FC02AAC07 /* Project object */ = { isa = PBXProject; + attributes = { + LastUpgradeCheck = 0430; + }; buildConfigurationList = 7528103408569F6900FEFBDC /* Build configuration list for PBXProject "Keychain" */; - compatibilityVersion = "Xcode 3.1"; + compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 1; knownRegions = ( @@ -2203,7 +2206,6 @@ isa = XCBuildConfiguration; buildSettings = { COPY_PHASE_STRIP = YES; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; PRODUCT_NAME = World; ZERO_LINK = NO; @@ -2216,10 +2218,8 @@ ARCHS = "$(NATIVE_ARCH_ACTUAL)"; COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = dwarf; - FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/build/Development\""; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_ENABLE_OBJC_GC = supported; - GCC_ENABLE_SSE3_EXTENSIONS = YES; GCC_FAST_OBJC_DISPATCH = YES; GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; @@ -2241,10 +2241,9 @@ GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.5; + MACOSX_DEPLOYMENT_TARGET = 10.6; OTHER_CFLAGS = "-ggdb3"; - PREBINDING = NO; - SDKROOT = macosx10.5; + SDKROOT = macosx; VERSIONING_SYSTEM = "apple-generic"; }; name = Development; @@ -2254,10 +2253,8 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; DEBUG_INFORMATION_FORMAT = dwarf; - FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/build/Development\""; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_ENABLE_OBJC_GC = supported; - GCC_ENABLE_SSE3_EXTENSIONS = YES; GCC_FAST_OBJC_DISPATCH = YES; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -2278,10 +2275,9 @@ GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.5; + MACOSX_DEPLOYMENT_TARGET = 10.6; OTHER_CFLAGS = "-ggdb3"; - PREBINDING = NO; - SDKROOT = macosx10.5; + SDKROOT = macosx; VERSIONING_SYSTEM = "apple-generic"; }; name = Deployment; diff --git a/delimport/DIBookmarksController.m b/delimport/DIBookmarksController.m index f6e7115..e50db02 100644 --- a/delimport/DIBookmarksController.m +++ b/delimport/DIBookmarksController.m @@ -102,13 +102,16 @@ - (void)addToLoginItems { - (KeychainItem *) getKeychainUserAndPass { KeychainSearch * search = [[KeychainSearch alloc] init]; [search setServer:[DIBookmarksController serverAddress]]; + NSArray *results = [search internetSearchResults]; if ([results count] <= 0) { return nil; } + KeychainItem *item = [results objectAtIndex:0]; username = [item account]; password = [item dataAsString]; + return item; } diff --git a/delimport/DIFileController.m b/delimport/DIFileController.m index e8b0e6a..ecc0b7a 100644 --- a/delimport/DIFileController.m +++ b/delimport/DIFileController.m @@ -15,6 +15,10 @@ #define DIFAILPlistFileName @"Failed Downloads.plist" +@interface DIFileController (Callback) +- (void) downloadFinishedWithStatus: (NSNotification*) notification; +@end + @implementation DIFileController @@ -166,11 +170,16 @@ - (void) saveDictionary: (NSDictionary *) dictionary { NSNumber *osType = [NSNumber numberWithUnsignedLong:'DELi']; [mutable removeObjectForKey: DIHashKey]; [mutable writeToFile:path atomically:YES]; + NSFileManager * fM = [[[NSFileManager alloc] init] autorelease]; + NSError * error; + + if (![fM setAttributes:[NSDictionary dictionaryWithObject:osType forKey:NSFileHFSTypeCode] ofItemAtPath:path error:&error]) { + NSLog(@"Failed to set HFS Type Code for file %@ (%@)", path, [error localizedDescription]); + } - [fM changeFileAttributes:[NSDictionary dictionaryWithObject:osType forKey:NSFileHFSTypeCode] atPath:path]; - /* Set creation date do bookmark date. + /* Set creation date to bookmark date. Setting the modification date might be more useful, but would be 'wrong' as we don't know when the bookmark was last edited. Investigate setting the last used date as well? @@ -178,7 +187,10 @@ - (void) saveDictionary: (NSDictionary *) dictionary { */ NSDate * date = [mutable objectForKey: DITimeKey]; if (date) { - [fM changeFileAttributes:[NSDictionary dictionaryWithObject:date forKey:NSFileCreationDate] atPath:path]; + if (![fM setAttributes:[NSDictionary dictionaryWithObject:date forKey:NSFileCreationDate] ofItemAtPath:path error:&error]) { + NSLog(@"Failed to set creation date for file %@ (%@)", path, [error localizedDescription]); + + } } } } diff --git a/delimport/DILoginController.m b/delimport/DILoginController.m index 74489d2..c350a5e 100644 --- a/delimport/DILoginController.m +++ b/delimport/DILoginController.m @@ -22,8 +22,12 @@ - (void)getUsername:(NSString **)username password:(NSString **)password [self showWindow:self]; [[self window] makeKeyAndOrderFront:self]; [[self window] center]; - [userField setStringValue:*username]; - [passField setStringValue:*password]; + if(*username) { + [userField setStringValue:*username]; + } + if (*password) { + [passField setStringValue:*password]; + } [NSApp runModalForWindow:[self window]]; *username = [userField stringValue]; *password = [passField stringValue]; diff --git a/delimport/Info.plist b/delimport/Info.plist index 2e4378e..f79cc34 100644 --- a/delimport/Info.plist +++ b/delimport/Info.plist @@ -17,8 +17,6 @@ org.ianhenderson.delicious.bookmark - NSPersistentStoreTypeKey - XML CFBundleTypeIconFile @@ -31,8 +29,6 @@ org.ianhenderson.pinboard.bookmark - NSPersistentStoreTypeKey - XML CFBundleExecutable @@ -45,22 +41,26 @@ 6.0 CFBundlePackageType APPL + CFBundleShortVersionString + 0.6a3 CFBundleSignature DeLi + CFBundleURLTypes + CFBundleVersion 55 - CFBundleShortVersionString - 0.6a3 + LSMinimumSystemVersion + 10.5 LSUIElement NSMainNibFile MainMenu NSPrincipalClass NSApplication + NSServices + NSSupportsSuddenTermination YES - LSMinimumSystemVersion - 10.5 UTExportedTypeDeclarations @@ -70,6 +70,8 @@ UTTypeDescription delicious Bookmark + UTTypeIconFile + delicious UTTypeIdentifier org.ianhenderson.delicious.bookmark UTTypeTagSpecification @@ -89,6 +91,8 @@ UTTypeDescription pinboard Bookmark + UTTypeIconFile + pinboard UTTypeIdentifier org.ianhenderson.pinboard.bookmark UTTypeTagSpecification @@ -102,5 +106,7 @@ + UTImportedTypeDeclarations + diff --git a/delimport/delimport.xcodeproj/project.pbxproj b/delimport/delimport.xcodeproj/project.pbxproj index c1e7c08..32a525e 100644 --- a/delimport/delimport.xcodeproj/project.pbxproj +++ b/delimport/delimport.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 45; + objectVersion = 46; objects = { /* Begin PBXAggregateTarget section */ @@ -199,11 +199,11 @@ 6C21EC6A12D290B100091671 /* en */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 6C383FF21066F2370001AAAD /* Readme.markdown */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = Readme.markdown; path = ../Readme.markdown; sourceTree = ""; }; 6C41DF3313632F0200EB6477 /* DIWebarchiveDownload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DIWebarchiveDownload.h; sourceTree = ""; }; - 6C41DF3413632F0200EB6477 /* DIWebarchiveDownload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DIWebarchiveDownload.m; sourceTree = ""; }; + 6C41DF3413632F0200EB6477 /* DIWebarchiveDownload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = DIWebarchiveDownload.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; 6C41E01E1364335C00EB6477 /* DIQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DIQueue.h; sourceTree = ""; }; 6C41E01F1364335C00EB6477 /* DIQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DIQueue.m; sourceTree = ""; }; 6C41E04B13643B5300EB6477 /* DIQueueItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DIQueueItem.h; sourceTree = ""; }; - 6C41E04C13643B5300EB6477 /* DIQueueItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DIQueueItem.m; sourceTree = ""; }; + 6C41E04C13643B5300EB6477 /* DIQueueItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = DIQueueItem.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; 6C5A9C66104D9A030092E350 /* fr */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = ""; }; 6C5A9C67104D9A090092E350 /* fr */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = fr; path = fr.lproj/LogIn.xib; sourceTree = ""; }; 6C5AA488104E91210092E350 /* de */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = ""; }; @@ -223,9 +223,9 @@ BF138E6E082587BA009D55C5 /* DILoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DILoginController.h; sourceTree = ""; }; BF138E6F082587BA009D55C5 /* DILoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DILoginController.m; sourceTree = ""; }; BF5D10050824537F0096CC1B /* DIBookmarksController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DIBookmarksController.h; sourceTree = ""; }; - BF5D10060824537F0096CC1B /* DIBookmarksController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DIBookmarksController.m; sourceTree = ""; }; + BF5D10060824537F0096CC1B /* DIBookmarksController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = DIBookmarksController.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; BFAA6A2A0821F9F300828D28 /* DIFileController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DIFileController.h; sourceTree = ""; }; - BFAA6A2B0821F9F300828D28 /* DIFileController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DIFileController.m; sourceTree = ""; }; + BFAA6A2B0821F9F300828D28 /* DIFileController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = DIFileController.m; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objc; }; BFAA6A5F082210D500828D28 /* delicious.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = delicious.icns; sourceTree = ""; }; /* End PBXFileReference section */ @@ -399,8 +399,11 @@ /* Begin PBXProject section */ 29B97313FDCFA39411CA2CEA /* Project object */ = { isa = PBXProject; + attributes = { + LastUpgradeCheck = 0410; + }; buildConfigurationList = 6CCC64330A40CC7F00540A50 /* Build configuration list for PBXProject "delimport" */; - compatibilityVersion = "Xcode 3.1"; + compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 1; knownRegions = ( @@ -658,7 +661,6 @@ buildSettings = { COPY_PHASE_STRIP = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; PRODUCT_NAME = Release; }; name = Deployment; @@ -666,10 +668,10 @@ 6CCC64300A40CC7F00540A50 /* Development */ = { isa = XCBuildConfiguration; buildSettings = { + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CODE_SIGN_IDENTITY = "earthlingsoft Software"; COPY_PHASE_STRIP = NO; GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -686,7 +688,6 @@ INFOPLIST_FILE = Info.plist; INSTALL_PATH = "$(HOME)/Applications"; ONLY_ACTIVE_ARCH = YES; - PREBINDING = NO; PRODUCT_NAME = delimport; WRAPPER_EXTENSION = app; }; @@ -695,8 +696,8 @@ 6CCC64310A40CC7F00540A50 /* Deployment */ = { isa = XCBuildConfiguration; buildSettings = { + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; CODE_SIGN_IDENTITY = "earthlingsoft Software"; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = delimport_Prefix.pch; @@ -710,7 +711,6 @@ GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = Info.plist; ONLY_ACTIVE_ARCH = NO; - PREBINDING = NO; PRODUCT_NAME = delimport; WRAPPER_EXTENSION = app; }; @@ -719,7 +719,8 @@ 6CCC64340A40CC7F00540A50 /* Development */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(NATIVE_ARCH_ACTUAL)"; + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + CODE_SIGN_IDENTITY = earthlingsoft; COPY_PHASE_STRIP = NO; GCC_ENABLE_OBJC_GC = supported; GCC_VERSION = com.apple.compilers.llvm.clang.1_0; @@ -743,7 +744,9 @@ GCC_WARN_UNUSED_PARAMETER = NO; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - SDKROOT = macosx10.5; + ONLY_ACTIVE_ARCH = YES; + PROVISIONING_PROFILE = ""; + SDKROOT = macosx; STRIP_INSTALLED_PRODUCT = NO; }; name = Development; @@ -752,8 +755,9 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + CODE_SIGN_IDENTITY = earthlingsoft; GCC_ENABLE_OBJC_GC = supported; - GCC_VERSION = ""; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_ABOUT_GLOBAL_CONSTRUCTORS = YES; GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; GCC_WARN_ABOUT_MISSING_NEWLINE = YES; @@ -774,7 +778,8 @@ GCC_WARN_UNUSED_PARAMETER = NO; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - SDKROOT = macosx10.5; + PROVISIONING_PROFILE = ""; + SDKROOT = macosx; }; name = Deployment; }; diff --git a/delimport/spotlight_interface/del.icio.us Spotlight Interface.xcodeproj/project.pbxproj b/delimport/spotlight_interface/del.icio.us Spotlight Interface.xcodeproj/project.pbxproj index e6ddfb0..213523d 100644 --- a/delimport/spotlight_interface/del.icio.us Spotlight Interface.xcodeproj/project.pbxproj +++ b/delimport/spotlight_interface/del.icio.us Spotlight Interface.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 45; + objectVersion = 46; objects = { /* Begin PBXBuildFile section */ @@ -139,8 +139,11 @@ /* Begin PBXProject section */ 089C1669FE841209C02AAC07 /* Project object */ = { isa = PBXProject; + attributes = { + LastUpgradeCheck = 0430; + }; buildConfigurationList = 6CCC644D0A40CCF800540A50 /* Build configuration list for PBXProject "del.icio.us Spotlight Interface" */; - compatibilityVersion = "Xcode 3.1"; + compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 1; knownRegions = ( @@ -217,14 +220,14 @@ 6CCC644A0A40CCF800540A50 /* Development */ = { isa = XCBuildConfiguration; buildSettings = { + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; COPY_PHASE_STRIP = NO; - DEBUGGING_SYMBOLS = YES; FRAMEWORK_SEARCH_PATHS = ""; GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PRECOMPILE_PREFIX_HEADER = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO; @@ -232,32 +235,28 @@ HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = Info.plist; INSTALL_PATH = /Library/Spotlight; - LIBRARY_SEARCH_PATHS = ""; - LIBRARY_STYLE = Bundle; OTHER_CFLAGS = ""; OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; PRODUCT_NAME = "del.icio.us Spotlight Interface"; - SECTORDER_FLAGS = ""; + SDKROOT = macosx; WARNING_CFLAGS = ( "-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); WRAPPER_EXTENSION = mdimporter; - ZERO_LINK = NO; }; name = Development; }; 6CCC644B0A40CCF800540A50 /* Deployment */ = { isa = XCBuildConfiguration; buildSettings = { + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; COPY_PHASE_STRIP = YES; FRAMEWORK_SEARCH_PATHS = ""; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GCC_PRECOMPILE_PREFIX_HEADER = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO; @@ -265,21 +264,16 @@ HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = Info.plist; INSTALL_PATH = /Library/Spotlight; - LIBRARY_SEARCH_PATHS = ""; - LIBRARY_STYLE = Bundle; OTHER_CFLAGS = ""; OTHER_LDFLAGS = ""; - OTHER_REZFLAGS = ""; - PREBINDING = NO; PRODUCT_NAME = "del.icio.us Spotlight Interface"; - SECTORDER_FLAGS = ""; + SDKROOT = macosx; WARNING_CFLAGS = ( "-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); WRAPPER_EXTENSION = mdimporter; - ZERO_LINK = NO; }; name = Deployment; }; @@ -312,10 +306,9 @@ GCC_WARN_UNKNOWN_PRAGMAS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_LABEL = YES; - GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - SDKROOT = macosx10.5; + SDKROOT = macosx; }; name = Development; }; @@ -348,10 +341,9 @@ GCC_WARN_UNKNOWN_PRAGMAS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_LABEL = YES; - GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - SDKROOT = macosx10.5; + SDKROOT = macosx; }; name = Deployment; };