My working unpac space for OCaml projects in development
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

doc: legacy support is now disabled by default

+8 -3
+4
vendor/git/zstd-c/CHANGELOG
··· 1 + v1.6.0 (Dec 2025) 2 + api: legacy format support is now disabled by default 3 + build: `ZSTD_LEGACY_SUPPORT` defaults to `0` in Makefile and CMake 4 + 1 5 V1.5.7 (Feb 2025) 2 6 fix: compression bug in 32-bit mode associated with long-lasting sessions 3 7 api: new method `ZSTD_compressSequencesAndLiterals()` (#4217, #4232)
+4 -3
vendor/git/zstd-c/lib/README.md
··· 12 12 - `make` : generates both static and dynamic libraries 13 13 - `make install` : install libraries, headers and pkg-config in local system directories 14 14 15 - `libzstd` default scope is extensive, including compression, decompression, dictionary builder, 16 - and support for decoding legacy formats >= v0.5.0 by default. 15 + `libzstd` default scope includes compression, decompression, and dictionary builder. 16 + Note: starting v1.6.0, support for decoding legacy formats is disabled by default. 17 + See _modular build_ below to learn how to enable it. 17 18 The scope can be reduced on demand (see paragraph _modular build_). 18 19 19 20 #### Multiarch Support ··· 99 100 Specifying a number limits versions supported to that version onward. 100 101 For example, `ZSTD_LEGACY_SUPPORT=2` means : "support legacy formats >= v0.2.0". 101 102 Conversely, `ZSTD_LEGACY_SUPPORT=0` means "do __not__ support legacy formats". 102 - By default, this build macro is set as `ZSTD_LEGACY_SUPPORT=5`. 103 + By default, this build macro is set as `ZSTD_LEGACY_SUPPORT=0` (disabled). 103 104 Decoding supported legacy format is a transparent capability triggered within decompression functions. 104 105 It's also allowed to invoke legacy API directly, exposed in `lib/legacy/zstd_legacy.h`. 105 106 Each version does also provide its own set of advanced API.