This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=14103a89cd3e1892f016157a74c5936c1f75b43f commit 14103a89cd3e1892f016157a74c5936c1f75b43f Author: Guillem Jover <[email protected]> AuthorDate: Sun Dec 18 23:57:57 2022 +0100 debian: Require liblzma >= 5.4.0 for multi-threaded compressor support Although we support conditionally enabling the support if it's available, this might not guarantee we get it at build time depending on the build system. --- debian/control | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 0b4a76cc7..926e6e244 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,8 @@ Build-Depends: libmd-dev, zlib1g-dev, libbz2-dev, - liblzma-dev, +# Version needed for multi-threaded compressor support. + liblzma-dev (>= 5.4.0), libselinux1-dev [linux-any], libncurses-dev (>= 6.1+20180210), # Needed for the functional test. @@ -81,7 +82,8 @@ Depends: ${misc:Depends}, libmd-dev, zlib1g-dev, - liblzma-dev, +# Version needed for multi-threaded compressor support. + liblzma-dev (>= 5.4.0), libbz2-dev, Description: Debian package management static library This package provides the header files and static library necessary to -- Dpkg.Org's dpkg

