-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#4229) libarchive: add 3.5.1 + bump deps + cache cmake + del fPIC if…
… shared + minor cosmetic changes * bump dependencies * delete fPIC option if shared * cache cmake * reorder methods by order of execution * consistent double quote across recipe * allow 3.4.0 and Visual Studio 16 * add libarchive/3.5.1 * remove useless packaging cleanup lib/cmake and cmake folders are not installed * fix license * add with_zlib option * add missing dependencies (except cng) * same ordering in requirements() and options easier to see if all options are covered * fix bzip2/libxml2/openssl/pcre/lzma options
- Loading branch information
Showing
4 changed files
with
137 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
sources: | ||
"3.4.0": | ||
url: "https://github.com/libarchive/libarchive/releases/download/v3.4.0/libarchive-3.4.0.tar.gz" | ||
sha256: "8643d50ed40c759f5412a3af4e353cffbce4fdf3b5cf321cb72cacf06b2d825e" | ||
"3.5.1": | ||
url: "https://github.com/libarchive/libarchive/releases/download/3.5.1/libarchive-3.5.1.tar.gz" | ||
sha256: "9015d109ec00bb9ae1a384b172bf2fc1dff41e2c66e5a9eeddf933af9db37f5a" | ||
"3.4.3": | ||
url: "https://github.com/libarchive/libarchive/releases/download/v3.4.3/libarchive-3.4.3.tar.gz" | ||
sha256: "ee1e749213c108cb60d53147f18c31a73d6717d7e3d2481c157e1b34c881ea39" | ||
"3.4.0": | ||
url: "https://github.com/libarchive/libarchive/releases/download/v3.4.0/libarchive-3.4.0.tar.gz" | ||
sha256: "8643d50ed40c759f5412a3af4e353cffbce4fdf3b5cf321cb72cacf06b2d825e" | ||
patches: | ||
"3.4.0": | ||
- patch_file: "patches/msvc-no-we4061.patch" | ||
base_path: "source_subfolder" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -157,7 +157,6 @@ IF (MSVC) | ||
# This is added into CMAKE_C_FLAGS when CMAKE_BUILD_TYPE is "Debug" | ||
# Enable level 4 C4061: The enumerate has no associated handler in a switch | ||
# statement. | ||
- SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /we4061") | ||
# Enable level 4 C4254: A larger bit field was assigned to a smaller bit | ||
# field. | ||
SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /we4254") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
versions: | ||
"3.4.0": | ||
"3.5.1": | ||
folder: all | ||
"3.4.3": | ||
folder: all | ||
"3.4.0": | ||
folder: all |