Commit graph

9 commits

Author SHA1 Message Date
nros
c5e30eec1c Fix rpath arguments in brotli pkgconfig files
The pkgconfig files for brotli had a direct -R missing -Wl, this breaks
the linking step when used. Remove them and use PKGCONFIG_OVERRIDE instead.
2021-03-21 19:24:24 +00:00
wiz
450511c07d brotli: update to 1.0.9.
Version 1.0.9 contains a fix to "integer overflow" problem. This
happens when "one-shot" decoding API is used (or input chunk for
streaming API is not limited), input size (chunk size) is larger
than 2GiB, and input contains uncompressed blocks. After the overflow
happens, `memcpy` is invoked with a gigantic `num` value, that will
likely cause the crash.
2020-08-31 08:45:44 +00:00
adam
964fe08276 brotli: Use shared libraries for linking the main executable 2019-04-19 17:56:52 +00:00
wiz
0bdf9dc79d brotli: update to 1.0.7.
1.0.7

    cross compilation support:
        added ability to run cross-compiled ARM tests in qemu
        added arm-linux-gnueabihf-gcc entry to Travis build matrix
    faster decoding on ARM:
        implemented prefetching HuffmanCode entry as uint32_t if target platform is ARM
        fixed NEON extension detection
        combed Huffman table building code for better readability
    improved precision of window size calculation in CLI
    minor fixes:
        fixed typos
        improved internal comments / parameter names
        fixed BROTLI_PREDICT_TRUE/_FALSE detection for SunPro compiler
        unburdened JNI (Bazel) builds from fetching the full JDK

1.0.6

Fixes

    fix unaligned 64-bit accesses on AArch32
    add missing files to the sources list
    add ASAN/MSAN unaligned read specializations
    fix CoverityScan "unused assignment" warning
    fix JDK 8<->9 incompatibility
    unbreak Travis builds
    fix auto detect of bundled mode in cmake
2018-12-01 17:22:04 +00:00
wiz
21ed507ede brotli: update to 1.0.5.
Changes:

    improve q=1 compression on small files
    inverse Bazel workspace tree
    add rolling-composite-hasher for large-window mode
    add tools to download and transform static dictionary data
2018-08-16 08:44:21 +00:00
wiz
dfaa1f08aa brotli: update to 1.0.4.
fix unaligned access for aarch64-cross-armhf build
    fix aarch64 target detection
    allow CLI to compress with enabled "large window" feature
    add NPOSTFIX / NDIRECT encoder parameters
    automatic NDIRECT/NPOSTFIX tuning (better compression)
    fix "memory leak" in python tests
    fix bug in durchschlag
    fix source file lists (add params.h)
    fix Bazel/MSVC compilator options
    fix "fall though" warnings
2018-05-07 11:03:42 +00:00
mef
ba7399ef94 Updated archivers/brotli to 1.0.3
Brotli v1.0.3
Key changes:
 - new feature: "Large Window Brotli"
 - new dictionary generator

Other changes:
 - improved compression ratio: sub-blocks stitching
 - improved compression ratio: eliminated floating numbers rounding
 - improved compression ratio: make the zopflification aware
   of NDIRECT, NPOSTFIX
 - improve automake build
 - improve BrotliEncoderMaxCompressedSize precision
 - fix API documentation / typos
 - fix code style
 - make hashers host-endianness-independent
 - Java: added "eager" decoding both to JNI wrapper and pure decoder
 - CLI: window size is auto-adjusted
 - added dictionaryless compressed dictionary
2018-03-03 02:17:08 +00:00
mef
3e583350e1 Updated archivers/brotli to 1.0.2
This is a build-maintenance release. Major changes:

    added Autotools build files
    switched shared library version to libtool scheme

In this release semantic suffix and libtool suffix are the same: 1.0.2.
Don't expect them to match in future releases.

Minor changes:

    BrotliDictionary members are not const now
    ZopfliNode distance could be up to 128MiB
    fixed API documentation typos
    total_out is always set by decoder
    fixed BROTLI_ENSURE_CAPACITY macro; no-op in preprocessed output

Other changes:

    fixed scripts for oss-fuzz, test them with Travis
    made Bazel JNI tests less messy
    fixed linter warnings in JS decoder
    fixed permissions of various files
    added Bazel build to Appveyor matrix
    added Sieve dictionary generator
2018-01-27 12:38:19 +00:00
adam
493aa5e249 brotli: added version 1.0.1
Brotli is a generic-purpose lossless compression algorithm that compresses data
using a combination of a modern variant of the LZ77 algorithm, Huffman coding
and 2nd order context modeling, with a compression ratio comparable to the best
currently available general-purpose compression methods. It is similar in speed
with deflate but offers more dense compression.
2017-10-23 13:15:29 +00:00