From ca43ac443377a546e4acf436bc9c59ca76028734 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 19 Sep 2023 15:33:18 +0800 Subject: [PATCH] libdeflate: upgrade 1.18 -> 1.19 * Added new functions 'libdeflate_alloc_compressor_ex()' and 'libdeflate_alloc_decompressor_ex()'. These functions allow specifying a custom memory allocator on a per-compressor basis. * libdeflate now always generates Huffman codes with at least 2 codewords. This fixes a compatibility issue where Windows Explorer's ZIP unpacker could not decompress DEFLATE streams created by libdeflate. libdeflate's behavior was allowed by the DEFLATE RFC, but not all software was okay with it. In rare cases, compression ratios can be slightly reduced by this change. * Disabled the use of some compiler intrinsics on MSVC versions where they don't work correctly. * libdeflate can now compress up to the exact size of the output buffer. * Slightly improved compression performance at levels 1-9. * Improved the compression ratio of very short inputs. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../libdeflate/{libdeflate_1.18.bb => libdeflate_1.19.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-oe/recipes-extended/libdeflate/{libdeflate_1.18.bb => libdeflate_1.19.bb} (88%) diff --git a/meta-oe/recipes-extended/libdeflate/libdeflate_1.18.bb b/meta-oe/recipes-extended/libdeflate/libdeflate_1.19.bb similarity index 88% rename from meta-oe/recipes-extended/libdeflate/libdeflate_1.18.bb rename to meta-oe/recipes-extended/libdeflate/libdeflate_1.19.bb index b1c3371159..11cdb82905 100644 --- a/meta-oe/recipes-extended/libdeflate/libdeflate_1.18.bb +++ b/meta-oe/recipes-extended/libdeflate/libdeflate_1.19.bb @@ -9,7 +9,7 @@ DEPENDS += "gzip zlib" SRC_URI = "git://github.com/ebiggers/libdeflate.git;protocol=https;branch=master" S = "${WORKDIR}/git" -SRCREV = "495fee110ebb48a5eb63b75fd67e42b2955871e2" +SRCREV = "dd12ff2b36d603dbb7fa8838fe7e7176fcbd4f6f" inherit cmake pkgconfig