From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id 7B22F3858C35; Wed, 7 Feb 2024 12:00:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7B22F3858C35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1707307202; bh=vcsEnVKrRcDl/Iz3Hs4b6Rn6MgFfgnPjYYBTMz1BXD8=; h=To:Subject:Date:From:From; b=ZmUeDbR1NUuCt90eyFY77ABGH8mtw7geCkiJbRdlCY4FBBkxqq6bsXK7ihsEgdD4I MjhReuV6KOCMWYIb1g/ywDITMPrTJARGvZ/C0N5fLOq8w48efhfzskpLp9aybKhZ4c ZI6AncG6x1UXt7Lrql21HQKPdJxJX0EGNpOxYvWA= To: cygwin-apps-cvs@sourceware.org Subject: [setup - the official Cygwin setup program] branch master, updated. release_2.929-3-g71068518 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 86c0ada12dce4403a9b796380fde9e5c1824734f X-Git-Newrev: 710685185a7d2aa05d90a009c45076d3de1a6639 Message-Id: <20240207120002.7B22F3858C35@sourceware.org> Date: Wed, 7 Feb 2024 12:00:02 +0000 (GMT) From: Jon Turney List-Id: https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/setup.git;h=710685185a7d2aa05d90a009c45076d3de1a6639 commit 710685185a7d2aa05d90a009c45076d3de1a6639 Author: Jon Turney 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 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 +#include 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