summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-09-19 15:33:18 +0800
committerKhem Raj <raj.khem@gmail.com>2023-09-20 15:34:03 -0700
commitca43ac443377a546e4acf436bc9c59ca76028734 (patch)
treeb96eae7aa15e61abe6bdec5d5240a4374102a0eb /meta-oe
parent1436b3a17964f677cbb45a3eb6356a2349f248c0 (diff)
downloadmeta-openembedded-ca43ac443377a546e4acf436bc9c59ca76028734.tar.gz
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 <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-extended/libdeflate/libdeflate_1.19.bb (renamed from meta-oe/recipes-extended/libdeflate/libdeflate_1.18.bb)2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/libdeflate/libdeflate_1.18.bb b/meta-oe/recipes-extended/libdeflate/libdeflate_1.19.bb
index b1c337115..11cdb8290 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"
9SRC_URI = "git://github.com/ebiggers/libdeflate.git;protocol=https;branch=master" 9SRC_URI = "git://github.com/ebiggers/libdeflate.git;protocol=https;branch=master"
10 10
11S = "${WORKDIR}/git" 11S = "${WORKDIR}/git"
12SRCREV = "495fee110ebb48a5eb63b75fd67e42b2955871e2" 12SRCREV = "dd12ff2b36d603dbb7fa8838fe7e7176fcbd4f6f"
13 13
14inherit cmake pkgconfig 14inherit cmake pkgconfig
15 15