Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZipArchive 1.1 #557

Merged
merged 6 commits into from
Feb 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cartfile.private
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github "jspahrsummers/xcconfigs" >= 0.7.1
github "Quick/Quick" ~> 0.9.1
github "Quick/Nimble" ~> 3.1
github "ZipArchive/ZipArchive" == 1.0.1
github "ZipArchive/ZipArchive" ~> 1.1
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github "Quick/Nimble" "v3.1.0"
github "Quick/Quick" "v0.9.1"
github "ZipArchive/ZipArchive" "v1.0.1"
github "ZipArchive/ZipArchive" "v1.1"
github "jspahrsummers/xcconfigs" "0.9"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/ZipArchive
Submodule ZipArchive updated 46 files
+2 −2 .gitignore
+23 −18 ObjectiveCExample/ObjectiveCExampleTests/SSZipArchiveTests.m
+3 −3 ObjectiveCExample/Podfile.lock
+3 −0 README.md
+4 −4 SSZipArchive.podspec
+39 −1 SSZipArchive/Common.h
+26 −0 SSZipArchive/Info.plist
+25 −17 SSZipArchive/SSZipArchive.h
+396 −359 SSZipArchive/SSZipArchive.m
+20 −0 SSZipArchive/ZipArchive.h
+198 −0 SSZipArchive/aes/aes.h
+541 −0 SSZipArchive/aes/aes_via_ace.h
+294 −0 SSZipArchive/aes/aescrypt.c
+548 −0 SSZipArchive/aes/aeskey.c
+739 −0 SSZipArchive/aes/aesopt.h
+391 −0 SSZipArchive/aes/aestab.c
+173 −0 SSZipArchive/aes/aestab.h
+126 −0 SSZipArchive/aes/brg_endian.h
+219 −0 SSZipArchive/aes/brg_types.h
+54 −0 SSZipArchive/aes/entropy.c
+16 −0 SSZipArchive/aes/entropy.h
+144 −0 SSZipArchive/aes/fileenc.c
+121 −0 SSZipArchive/aes/fileenc.h
+145 −0 SSZipArchive/aes/hmac.c
+103 −0 SSZipArchive/aes/hmac.h
+155 −0 SSZipArchive/aes/prng.c
+82 −0 SSZipArchive/aes/prng.h
+193 −0 SSZipArchive/aes/pwd2key.c
+57 −0 SSZipArchive/aes/pwd2key.h
+258 −0 SSZipArchive/aes/sha1.c
+73 −0 SSZipArchive/aes/sha1.h
+17 −18 SSZipArchive/minizip/crypt.h
+224 −93 SSZipArchive/minizip/ioapi.c
+89 −115 SSZipArchive/minizip/ioapi.h
+1,311 −1,623 SSZipArchive/minizip/unzip.c
+149 −300 SSZipArchive/minizip/unzip.h
+1,403 −1,510 SSZipArchive/minizip/zip.c
+121 −281 SSZipArchive/minizip/zip.h
+1 −0 SwiftExample/Cartfile
+3 −3 SwiftExample/Podfile.lock
+118 −0 SwiftExample/SwiftExample.xcodeproj/project.pbxproj
+6 −1 SwiftExample/SwiftExample/ViewController.swift
+614 −0 ZipArchive.xcodeproj/project.pbxproj
+7 −0 ZipArchive.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+80 −0 ZipArchive.xcodeproj/xcshareddata/xcschemes/ZipArchive-Mac.xcscheme
+80 −0 ZipArchive.xcodeproj/xcshareddata/xcschemes/ZipArchive-iOS.xcscheme
93 changes: 17 additions & 76 deletions ObjectiveGitFramework.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@
2089E43C17D9A58000F451DA /* GTTagSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 2089E43B17D9A58000F451DA /* GTTagSpec.m */; };
20F43DE318A2F668007D3621 /* GTRepository+Blame.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F43DE118A2F667007D3621 /* GTRepository+Blame.h */; settings = {ATTRIBUTES = (Public, ); }; };
20F43DE618A2F668007D3621 /* GTRepository+Blame.m in Sources */ = {isa = PBXBuildFile; fileRef = 20F43DE218A2F667007D3621 /* GTRepository+Blame.m */; };
23BB67B91C7DF3B600A37A66 /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = F8D007801B4F9758009A8DAF /* SSZipArchive.m */; };
23BB67BA1C7DF3BC00A37A66 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = F8D007841B4F97F9009A8DAF /* unzip.c */; };
23BB67BC1C7DF45300A37A66 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 23BB67BB1C7DF45300A37A66 /* libz.tbd */; };
23BB67BD1C7DF49500A37A66 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = F8D007851B4F97F9009A8DAF /* zip.c */; };
23BB67BE1C7DF4B100A37A66 /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = F8D007831B4F97F9009A8DAF /* mztools.c */; };
23BB67BF1C7DF4CD00A37A66 /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = F8D007821B4F97F9009A8DAF /* ioapi.c */; };
23BB67C11C7DF60300A37A66 /* GTRepository+PullSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = F8EFA0361B405020000FF7D0 /* GTRepository+PullSpec.m */; };
23BB67C21C7DF60400A37A66 /* GTRepository+PullSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = F8EFA0361B405020000FF7D0 /* GTRepository+PullSpec.m */; };
3011D86B1668E48500CE3409 /* GTDiffFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 3011D8691668E48500CE3409 /* GTDiffFile.h */; settings = {ATTRIBUTES = (Public, ); }; };
Expand Down Expand Up @@ -325,17 +320,13 @@
F879D8451B4B8138002D5C07 /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0A0128819F98475007F1914 /* Quick.framework */; };
F879D8471B4B8138002D5C07 /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F879D8461B4B8138002D5C07 /* Nimble.framework */; };
F879D8481B4B83B9002D5C07 /* SwiftSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0A0129619F9A660007F1914 /* SwiftSpec.swift */; };
F895F4DF1C801E5F004EA221 /* ZipArchive.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F895F4DE1C801E5F004EA221 /* ZipArchive.framework */; };
F8D007701B4F7CA8009A8DAF /* NSErrorGitSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F4E28917C7F24200BBDE30 /* NSErrorGitSpec.m */; };
F8D007711B4F7CB0009A8DAF /* NSDataGitSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = D01EFD9F195DEF2200838D24 /* NSDataGitSpec.m */; };
F8D007721B4F7CB6009A8DAF /* NSArray+StringArraySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 307623AA17C6C8BD00E2CDF1 /* NSArray+StringArraySpec.m */; };
F8D007731B4F7CC3009A8DAF /* GTSignatureSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = D040AF77177B9A9E001AD9EB /* GTSignatureSpec.m */; };
F8D007741B4F7CCC009A8DAF /* GTOIDSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = D040AF6F177B9779001AD9EB /* GTOIDSpec.m */; };
F8D007761B4F7D10009A8DAF /* GTTimeAdditionsSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 30B1E7FF1703871900D0814D /* GTTimeAdditionsSpec.m */; };
F8D007811B4F9758009A8DAF /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = F8D007801B4F9758009A8DAF /* SSZipArchive.m */; };
F8D007861B4F97F9009A8DAF /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = F8D007821B4F97F9009A8DAF /* ioapi.c */; };
F8D007871B4F97F9009A8DAF /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = F8D007831B4F97F9009A8DAF /* mztools.c */; };
F8D007881B4F97F9009A8DAF /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = F8D007841B4F97F9009A8DAF /* unzip.c */; };
F8D007891B4F97F9009A8DAF /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = F8D007851B4F97F9009A8DAF /* zip.c */; };
F8D0078B1B4F9F9E009A8DAF /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F8D0078A1B4F9F9E009A8DAF /* libz.dylib */; };
F8D0078C1B4FA03B009A8DAF /* GTBlobSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1C40D7182C006D00BE2960 /* GTBlobSpec.m */; };
F8D0078D1B4FA03B009A8DAF /* GTBranchSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A994B916FCE7D400402C7B /* GTBranchSpec.m */; };
Expand Down Expand Up @@ -371,6 +362,7 @@
F8D1BDF01B31FE7C00CDEC90 /* GTRepository+Pull.m in Sources */ = {isa = PBXBuildFile; fileRef = F8D1BDED1B31FE7C00CDEC90 /* GTRepository+Pull.m */; };
F8D1BDF11B31FE7C00CDEC90 /* GTRepository+Pull.m in Sources */ = {isa = PBXBuildFile; fileRef = F8D1BDED1B31FE7C00CDEC90 /* GTRepository+Pull.m */; };
F8E4A2911A170CA6006485A8 /* GTRemotePushSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E4A2901A170CA6006485A8 /* GTRemotePushSpec.m */; };
F8E68E731C800B1600DBC517 /* ZipArchive.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8E68E721C800B1600DBC517 /* ZipArchive.framework */; };
F8EFA03A1B4059ED000FF7D0 /* GTUtilityFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = F8EFA0391B4059ED000FF7D0 /* GTUtilityFunctions.m */; };
/* End PBXBuildFile section */

Expand Down Expand Up @@ -637,15 +629,12 @@
F879D82F1B4B77F4002D5C07 /* Libgit2FeaturesSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Libgit2FeaturesSpec.m; sourceTree = "<group>"; };
F879D8361B4B7F7C002D5C07 /* ObjectiveGit-iOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ObjectiveGit-iOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
F879D8461B4B8138002D5C07 /* Nimble.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Nimble.framework; path = "Carthage/Checkouts/Nimble/build/Debug-iphoneos/Nimble.framework"; sourceTree = "<group>"; };
F8D007801B4F9758009A8DAF /* SSZipArchive.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = SSZipArchive.m; path = Carthage/Checkouts/ZipArchive/SSZipArchive/SSZipArchive.m; sourceTree = "<group>"; };
F8D007821B4F97F9009A8DAF /* ioapi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = Carthage/Checkouts/ZipArchive/SSZipArchive/minizip/ioapi.c; sourceTree = "<group>"; };
F8D007831B4F97F9009A8DAF /* mztools.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = Carthage/Checkouts/ZipArchive/SSZipArchive/minizip/mztools.c; sourceTree = "<group>"; };
F8D007841B4F97F9009A8DAF /* unzip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = Carthage/Checkouts/ZipArchive/SSZipArchive/minizip/unzip.c; sourceTree = "<group>"; };
F8D007851B4F97F9009A8DAF /* zip.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = zip.c; path = Carthage/Checkouts/ZipArchive/SSZipArchive/minizip/zip.c; sourceTree = "<group>"; };
F895F4DE1C801E5F004EA221 /* ZipArchive.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZipArchive.framework; path = "/Volumes/DerivedData/ObjectiveGitFramework-drtqacfhlqybdcdpqayztrrwneun/Build/Products/Debug/ZipArchive.framework"; sourceTree = "<absolute>"; };
F8D0078A1B4F9F9E009A8DAF /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.4.sdk/usr/lib/libz.dylib; sourceTree = DEVELOPER_DIR; };
F8D1BDEC1B31FE7C00CDEC90 /* GTRepository+Pull.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GTRepository+Pull.h"; sourceTree = "<group>"; };
F8D1BDED1B31FE7C00CDEC90 /* GTRepository+Pull.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTRepository+Pull.m"; sourceTree = "<group>"; };
F8E4A2901A170CA6006485A8 /* GTRemotePushSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTRemotePushSpec.m; sourceTree = "<group>"; };
F8E68E721C800B1600DBC517 /* ZipArchive.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZipArchive.framework; path = "Carthage/Checkouts/ZipArchive/build/Debug-iphoneos/ZipArchive.framework"; sourceTree = "<group>"; };
F8EFA0361B405020000FF7D0 /* GTRepository+PullSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTRepository+PullSpec.m"; sourceTree = "<group>"; };
F8EFA0381B4059ED000FF7D0 /* GTUtilityFunctions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTUtilityFunctions.h; sourceTree = "<group>"; };
F8EFA0391B4059ED000FF7D0 /* GTUtilityFunctions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTUtilityFunctions.m; sourceTree = "<group>"; };
Expand All @@ -660,6 +649,7 @@
D0A0128A19F98475007F1914 /* Quick.framework in Frameworks */,
88F05A9E16011F6E00B7AD1D /* ObjectiveGit.framework in Frameworks */,
D0A0128C19F9853D007F1914 /* Nimble.framework in Frameworks */,
F895F4DF1C801E5F004EA221 /* ZipArchive.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -693,6 +683,7 @@
F879D8471B4B8138002D5C07 /* Nimble.framework in Frameworks */,
F879D8451B4B8138002D5C07 /* Quick.framework in Frameworks */,
F879D83C1B4B7F7D002D5C07 /* ObjectiveGit.framework in Frameworks */,
F8E68E731C800B1600DBC517 /* ZipArchive.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -713,7 +704,6 @@
0867D691FE84028FC02AAC07 /* ObjectiveGitFramework */ = {
isa = PBXGroup;
children = (
23BB67BB1C7DF45300A37A66 /* libz.tbd */,
BDD8AB01130F01AB00CB5D40 /* README.md */,
887B948D1A3A38130070D41D /* ObjectiveGit.modulemap */,
BDE4C05E130EFE2C00851650 /* ObjectiveGit */,
Expand All @@ -737,6 +727,7 @@
8803DA861313145700E6E818 /* libz.dylib */,
F8D0078A1B4F9F9E009A8DAF /* libz.dylib */,
884C8A3619FF4B4D0017E98D /* libz.dylib */,
23BB67BB1C7DF45300A37A66 /* libz.tbd */,
884C8A3819FF4B6D0017E98D /* libiconv.dylib */,
6A1F2FD317C6A8F3003DFADE /* libcrypto.a */,
6A1F2FD417C6A8F3003DFADE /* libssl.a */,
Expand All @@ -747,6 +738,8 @@
D0A0128B19F9853D007F1914 /* Nimble.framework */,
F879D8461B4B8138002D5C07 /* Nimble.framework */,
889923F919FF5DD40092A9A6 /* git2 */,
F895F4DE1C801E5F004EA221 /* ZipArchive.framework */,
F8E68E721C800B1600DBC517 /* ZipArchive.framework */,
);
name = "External Frameworks and Libraries";
sourceTree = "<group>";
Expand Down Expand Up @@ -803,7 +796,6 @@
88F05A7516011E5400B7AD1D /* ObjectiveGitTests */ = {
isa = PBXGroup;
children = (
F84E92581B8B6EA30019F947 /* SSZipArchive */,
200578C418932A82001C06C3 /* GTBlameSpec.m */,
4D1C40D7182C006D00BE2960 /* GTBlobSpec.m */,
88A994B916FCE7D400402C7B /* GTBranchSpec.m */,
Expand Down Expand Up @@ -1045,19 +1037,6 @@
path = Scripts;
sourceTree = "<group>";
};
F84E92581B8B6EA30019F947 /* SSZipArchive */ = {
isa = PBXGroup;
children = (
F8D007801B4F9758009A8DAF /* SSZipArchive.m */,
F8D007821B4F97F9009A8DAF /* ioapi.c */,
F8D007831B4F97F9009A8DAF /* mztools.c */,
F8D007841B4F97F9009A8DAF /* unzip.c */,
F8D007851B4F97F9009A8DAF /* zip.c */,
);
name = SSZipArchive;
path = ..;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand Down Expand Up @@ -1397,11 +1376,6 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
23BB67BF1C7DF4CD00A37A66 /* ioapi.c in Sources */,
23BB67BE1C7DF4B100A37A66 /* mztools.c in Sources */,
23BB67BD1C7DF49500A37A66 /* zip.c in Sources */,
23BB67BA1C7DF3BC00A37A66 /* unzip.c in Sources */,
23BB67B91C7DF3B600A37A66 /* SSZipArchive.m in Sources */,
23BB67C11C7DF60300A37A66 /* GTRepository+PullSpec.m in Sources */,
D0751CD918BE520400134314 /* GTFilterListSpec.m in Sources */,
200578C518932A82001C06C3 /* GTBlameSpec.m in Sources */,
Expand Down Expand Up @@ -1603,11 +1577,6 @@
F8D007961B4FA03B009A8DAF /* GTRemotePushSpec.m in Sources */,
F8D007A51B4FA03B009A8DAF /* GTDiffDeltaSpec.m in Sources */,
F879D8481B4B83B9002D5C07 /* SwiftSpec.swift in Sources */,
F8D007811B4F9758009A8DAF /* SSZipArchive.m in Sources */,
F8D007861B4F97F9009A8DAF /* ioapi.c in Sources */,
F8D007871B4F97F9009A8DAF /* mztools.c in Sources */,
F8D007881B4F97F9009A8DAF /* unzip.c in Sources */,
F8D007891B4F97F9009A8DAF /* zip.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -1832,7 +1801,6 @@
HEADER_SEARCH_PATHS = (
External/libgit2/include,
/usr/local/include,
"Carthage/Checkouts/ZipArchive/SSZipArchive/**",
);
INFOPLIST_FILE = "ObjectiveGitTests/ObjectiveGitTests-Info.plist";
MACOSX_DEPLOYMENT_TARGET = 10.9;
Expand All @@ -1852,7 +1820,6 @@
HEADER_SEARCH_PATHS = (
External/libgit2/include,
/usr/local/include,
"Carthage/Checkouts/ZipArchive/SSZipArchive/**",
);
INFOPLIST_FILE = "ObjectiveGitTests/ObjectiveGitTests-Info.plist";
MACOSX_DEPLOYMENT_TARGET = 10.9;
Expand Down Expand Up @@ -1926,7 +1893,6 @@
HEADER_SEARCH_PATHS = (
External/libgit2/include,
/usr/local/include,
"Carthage/Checkouts/ZipArchive/SSZipArchive/**",
);
INFOPLIST_FILE = "ObjectiveGitTests/ObjectiveGitTests-Info.plist";
MACOSX_DEPLOYMENT_TARGET = 10.9;
Expand Down Expand Up @@ -2164,7 +2130,6 @@
HEADER_SEARCH_PATHS = (
External/libgit2/include,
/usr/local/include,
"Carthage/Checkouts/ZipArchive/SSZipArchive/**",
);
INFOPLIST_FILE = "ObjectiveGitTests/ObjectiveGitTests-Info.plist";
MACOSX_DEPLOYMENT_TARGET = 10.9;
Expand Down Expand Up @@ -2241,10 +2206,7 @@
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
Expand All @@ -2263,10 +2225,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"Carthage/Checkouts/ZipArchive/SSZipArchive/**",
);
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = "ObjectiveGitTests/ObjectiveGitTests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down Expand Up @@ -2302,10 +2261,7 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
Expand All @@ -2315,10 +2271,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"Carthage/Checkouts/ZipArchive/SSZipArchive/**",
);
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = "ObjectiveGitTests/ObjectiveGitTests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down Expand Up @@ -2355,10 +2308,7 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
Expand All @@ -2368,10 +2318,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"Carthage/Checkouts/ZipArchive/SSZipArchive/**",
);
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = "ObjectiveGitTests/ObjectiveGitTests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down Expand Up @@ -2408,10 +2355,7 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
Expand All @@ -2421,10 +2365,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"Carthage/Checkouts/ZipArchive/SSZipArchive/**",
);
HEADER_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = "ObjectiveGitTests/ObjectiveGitTests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down
3 changes: 3 additions & 0 deletions ObjectiveGitFramework.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ObjectiveGitTests/QuickSpec+GTFixtures.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#import <ObjectiveGit/ObjectiveGit.h>
#import "QuickSpec+GTFixtures.h"
#import <objc/runtime.h>
#import "SSZipArchive.h"
#import <ZipArchive/ZipArchive.h>

static const NSInteger FixturesErrorUnzipFailed = 666;

Expand Down