diff options
author | saturneric <[email protected]> | 2023-10-18 07:17:07 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-18 07:17:07 +0000 |
commit | 5cbbab71b0ea131a56de0374ccb2c29f26824e39 (patch) | |
tree | f55c4ee214169fcd852f77e65fcbed80f07e639b /src | |
parent | chore: change binary output dir to artifacts (diff) | |
download | GpgFrontend-5cbbab71b0ea131a56de0374ccb2c29f26824e39.tar.gz GpgFrontend-5cbbab71b0ea131a56de0374ccb2c29f26824e39.zip |
chore: remove libarchive from source code
1. it's better to get this library at system PATH
Diffstat (limited to 'src')
-rw-r--r-- | src/core/function/ArchiveFileOperator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/function/ArchiveFileOperator.cpp b/src/core/function/ArchiveFileOperator.cpp index 5c2dea82..efe824dd 100644 --- a/src/core/function/ArchiveFileOperator.cpp +++ b/src/core/function/ArchiveFileOperator.cpp @@ -28,8 +28,8 @@ #include "ArchiveFileOperator.h" -#include <libarchive/libarchive/archive.h> -#include <libarchive/libarchive/archive_entry.h> +#include <archive.h> +#include <archive_entry.h> struct ArchiveStruct { struct archive *archive; |