Skip to content

Commit

Permalink
Update 8 packages
Browse files Browse the repository at this point in the history
libgpgme (1.24.1-2 -> 1.24.2-1)
libunrar (7.1.3-1 -> 7.1.4-1)
libxml2 (2.13.5-1 -> 2.13.6-1)
libzstd (1.5.6-1 -> 1.5.7-1)
mingw-w64-clang-aarch64-zstd (1.5.6-2 -> 1.5.7-1)
pacman (6.1.0-10 -> 6.1.0-11)
unrar (7.1.3-1 -> 7.1.4-1)
zstd (1.5.6-1 -> 1.5.7-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Feb 21, 2025
1 parent 0784920 commit e6ca63c
Show file tree
Hide file tree
Showing 107 changed files with 487 additions and 313 deletions.
Binary file modified clangarm64/bin/libzstd.dll
Binary file not shown.
Binary file modified clangarm64/bin/pzstd.exe
Binary file not shown.
Binary file modified clangarm64/bin/zstd.exe
Binary file not shown.
23 changes: 15 additions & 8 deletions clangarm64/include/zdict.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
* You may select, at your option, one of the above-listed licenses.
*/

#if defined (__cplusplus)
extern "C" {
#endif

#ifndef ZSTD_ZDICT_H
#define ZSTD_ZDICT_H


/*====== Dependencies ======*/
#include <stddef.h> /* size_t */

#if defined (__cplusplus)
extern "C" {
#endif

/* ===== ZDICTLIB_API : control library symbols visibility ===== */
#ifndef ZDICTLIB_VISIBLE
Expand Down Expand Up @@ -248,7 +248,7 @@ typedef struct {
* is presumed that the most profitable content is at the end of the dictionary,
* since that is the cheapest to reference.
*
* `maxDictSize` must be >= max(dictContentSize, ZSTD_DICTSIZE_MIN).
* `maxDictSize` must be >= max(dictContentSize, ZDICT_DICTSIZE_MIN).
*
* @return: size of dictionary stored into `dstDictBuffer` (<= `maxDictSize`),
* or an error code, which can be tested by ZDICT_isError().
Expand All @@ -271,11 +271,19 @@ ZDICTLIB_API size_t ZDICT_getDictHeaderSize(const void* dictBuffer, size_t dictS
ZDICTLIB_API unsigned ZDICT_isError(size_t errorCode);
ZDICTLIB_API const char* ZDICT_getErrorName(size_t errorCode);

#if defined (__cplusplus)
}
#endif

#endif /* ZSTD_ZDICT_H */

#if defined(ZDICT_STATIC_LINKING_ONLY) && !defined(ZSTD_ZDICT_H_STATIC)
#define ZSTD_ZDICT_H_STATIC

#if defined (__cplusplus)
extern "C" {
#endif

/* This can be overridden externally to hide static symbols. */
#ifndef ZDICTLIB_STATIC_API
# if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1)
Expand Down Expand Up @@ -466,9 +474,8 @@ ZDICTLIB_STATIC_API
size_t ZDICT_addEntropyTablesFromBuffer(void* dictBuffer, size_t dictContentSize, size_t dictBufferCapacity,
const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples);


#endif /* ZSTD_ZDICT_H_STATIC */

#if defined (__cplusplus)
}
#endif

#endif /* ZSTD_ZDICT_H_STATIC */
373 changes: 241 additions & 132 deletions clangarm64/include/zstd.h

Large diffs are not rendered by default.

9 changes: 1 addition & 8 deletions clangarm64/include/zstd_errors.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
extern "C" {
#endif

/*===== dependency =====*/
#include <stddef.h> /* size_t */


/* ===== ZSTDERRORLIB_API : control library symbols visibility ===== */
#ifndef ZSTDERRORLIB_VISIBLE
/* Backwards compatibility with old macro name */
Expand Down Expand Up @@ -80,6 +76,7 @@ typedef enum {
ZSTD_error_tableLog_tooLarge = 44,
ZSTD_error_maxSymbolValue_tooLarge = 46,
ZSTD_error_maxSymbolValue_tooSmall = 48,
ZSTD_error_cannotProduce_uncompressedBlock = 49,
ZSTD_error_stabilityCondition_notRespected = 50,
ZSTD_error_stage_wrong = 60,
ZSTD_error_init_missing = 62,
Expand All @@ -100,10 +97,6 @@ typedef enum {
ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */
} ZSTD_ErrorCode;

/*! ZSTD_getErrorCode() :
convert a `size_t` function result into a `ZSTD_ErrorCode` enum type,
which can be used to compare with enum list published above */
ZSTDERRORLIB_API ZSTD_ErrorCode ZSTD_getErrorCode(size_t functionResult);
ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /**< Same as ZSTD_getErrorName, but using a `ZSTD_ErrorCode` enum argument */


Expand Down
6 changes: 3 additions & 3 deletions clangarm64/lib/cmake/zstd/zstdConfigVersion.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
# The variable CVF_VERSION must be set before calling configure_file().


set(PACKAGE_VERSION "1.5.6")
set(PACKAGE_VERSION "1.5.7")

if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()

if("1.5.6" MATCHES "^([0-9]+)\\.")
if("1.5.7" MATCHES "^([0-9]+)\\.")
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
endif()
else()
set(CVF_VERSION_MAJOR "1.5.6")
set(CVF_VERSION_MAJOR "1.5.7")
endif()

if(PACKAGE_FIND_VERSION_RANGE)
Expand Down
4 changes: 2 additions & 2 deletions clangarm64/lib/cmake/zstd/zstdTargets.cmake
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Generated by CMake

if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
message(FATAL_ERROR "CMake >= 2.8.0 required")
message(FATAL_ERROR "CMake >= 3.0.0 required")
endif()
if(CMAKE_VERSION VERSION_LESS "3.0.0")
message(FATAL_ERROR "CMake >= 3.0.0 required")
endif()
cmake_policy(PUSH)
cmake_policy(VERSION 3.0.0...3.27)
cmake_policy(VERSION 3.0.0...3.29)
#----------------------------------------------------------------
# Generated CMake target import file.
#----------------------------------------------------------------
Expand Down
Binary file modified clangarm64/lib/libzstd.a
Binary file not shown.
Binary file modified clangarm64/lib/libzstd.dll.a
Binary file not shown.
6 changes: 3 additions & 3 deletions clangarm64/lib/pkgconfig/libzstd.pc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ libdir=${exec_prefix}/lib
Name: zstd
Description: fast lossless compression algorithm library
URL: https://facebook.github.io/zstd/
Version: 1.5.6
Libs: -L${libdir} -lzstd
Version: 1.5.7
Libs: -L${libdir} -lzstd
Libs.private:
Cflags: -I${includedir}
Cflags: -I${includedir}
Loading

0 comments on commit e6ca63c

Please sign in to comment.