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).
This commit is contained in:
Lightmann 2023-12-23 10:52:22 -05:00
parent b136e3a292
commit fb5e73e82f
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#import "unarchive.h" #import "unarchive.h"
#include <libarchive/archive.h> #include <archive.h>
#include <libarchive/archive_entry.h> #include <archive_entry.h>
static int static int
copy_data(struct archive *ar, struct archive *aw) copy_data(struct archive *ar, struct archive *aw)

View File

@ -6,8 +6,8 @@
// //
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import <libarchive/archive.h> #import <archive.h>
#import <libarchive/archive_entry.h> #import <archive_entry.h>
@import UIKit; @import UIKit;
@interface TSAppInfo : NSObject @interface TSAppInfo : NSObject