From fb5e73e82fab6d41635421d870a82cf4237dd9a2 Mon Sep 17 00:00:00 2001 From: Lightmann Date: Sat, 23 Dec 2023 10:52:22 -0500 Subject: [PATCH] Adjust libarchive include/imports Theos previously provided these headers but we have since decided against providing headers vended by their respective authors. In this case, libarchive provides their headers in the libarchive-dev package on Linux and the libarchive package via Homebrew/MacPorts on OSX (I think). --- RootHelper/unarchive.m | 4 ++-- TrollStore/TSAppInfo.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RootHelper/unarchive.m b/RootHelper/unarchive.m index be72fb2..f62e09f 100644 --- a/RootHelper/unarchive.m +++ b/RootHelper/unarchive.m @@ -1,7 +1,7 @@ #import "unarchive.h" -#include -#include +#include +#include static int copy_data(struct archive *ar, struct archive *aw) diff --git a/TrollStore/TSAppInfo.h b/TrollStore/TSAppInfo.h index 14ae0c8..e03f74b 100644 --- a/TrollStore/TSAppInfo.h +++ b/TrollStore/TSAppInfo.h @@ -6,8 +6,8 @@ // #import -#import -#import +#import +#import @import UIKit; @interface TSAppInfo : NSObject