[setup - the official Cygwin setup program] branch master, updated. release_2.929-3-g71068518
Jon Turney via Cygwin-apps-cvs <[email protected]> Wed, 7 Feb 2024 12:00:02 +0000 (GMT)
| Newsgroups | gmane.os.cygwin.cvs.apps |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/setup.git;h=710685185a7d2aa05d90a009c45076d3de1a6639 commit 710685185a7d2aa05d90a009c45076d3de1a6639 Author: Jon Turney <[email protected]> Date: Sun Feb 4 16:22:41 2024 +0000 Explicitly include stdint.h for uint64_t in compress_zstd.h https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/setup.git;h=760c46400637308c7efc85f76fcefc62caa37965 commit 760c46400637308c7efc85f76fcefc62caa37965 Author: Jon Turney <[email protected]> Date: Thu Feb 1 17:37:22 2024 +0000 Update mingw-zstd Fedora package name Fedora now has a ming-zstd package, although not a ming-zstd-static, so package names in the copr have been updated to align. Diff: --- README | 2 +- compress_zstd.h | 1 + packaging-scripts/fedora-prereqs-install.sh | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README b/README index 9bcf7b35..524c34de 100644 --- a/README +++ b/README @@ -45,10 +45,10 @@ required packages and their dependencies installed: - mingw${arch}-libgcrypt-static - mingw${arch}-libgnurx-static - mingw${arch}-libsolv-static (*) - - mingw${arch}-libzstd-static (**) - mingw${arch}-winpthreads-static - mingw${arch}-xz-libs-static - mingw${arch}-zlib-static + - mingw${arch}-zstd-static (**) - upx (optional) The ${arch} needs to be replaced with either "32" or "64" diff --git a/compress_zstd.h b/compress_zstd.h index b9b541e8..f8e6ca09 100644 --- a/compress_zstd.h +++ b/compress_zstd.h @@ -16,6 +16,7 @@ #include "compress.h" #include <zstd.h> +#include <stdint.h> class compress_zstd:public compress { diff --git a/packaging-scripts/fedora-prereqs-install.sh b/packaging-scripts/fedora-prereqs-install.sh index edc50b10..28a66dda 100755 --- a/packaging-scripts/fedora-prereqs-install.sh +++ b/packaging-scripts/fedora-prereqs-install.sh @@ -8,4 +8,4 @@ sudo dnf -y copr enable jturney/mingw-libsolv sudo dnf -y install mingw32-libsolv-static mingw64-libsolv-static sudo dnf -y install mingw32-libgnurx-static mingw64-libgnurx-static sudo dnf -y copr enable jturney/mingw-zstd -sudo dnf -y install mingw32-libzstd-static mingw64-libzstd-static +sudo dnf -y install mingw32-zstd-static mingw64-zstd-static