1
0
Fork 0

Merging upstream version 1.11.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-23 19:26:17 +01:00
parent 777972d75a
commit 6e5a5a3424
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
23 changed files with 560 additions and 480 deletions

34
NEWS
View file

@ -1,14 +1,30 @@
Changes in version 1.10:
Changes in version 1.11:
Compression level '-0' now uses a dictionary size of 64 KiB instead of
1 MiB.
Pdlzip now reports an error if a file name is empty (pdlzip -t "").
Errors are now also checked when closing the input file.
Option '-o, --output' now behaves like '-c, --stdout', but sending the
output unconditionally to a file instead of to standard output. See the new
description of '-o' in the manual. This change is backwards compatible only
when (de)compressing from standard input alone. Therefore commands like:
pdlzip -o foo.lz - bar < foo
must now be split into:
pdlzip -o foo.lz - < foo
pdlzip bar
or rewritten as:
pdlzip - bar < foo > foo.lz
Pdlzip now compiles on DOS with DJGPP. (Patch from Robert Riebisch).
When using '-c' or '-o', pdlzip now checks whether the output is a terminal
only once.
The configure script now accepts appending options to CFLAGS using the
syntax 'CFLAGS+=OPTIONS'.
Pdlzip now does not even open the output file if the input file is a terminal.
It has been documented in INSTALL the use of
CFLAGS+='-D __USE_MINGW_ANSI_STDIO' when compiling on MinGW.
It is now an error to specify two different operations in the command line
(--decompress and --test).
The words 'decompressed' and 'compressed' have been replaced with the
shorter 'out' and 'in' in the verbose output when decompressing or testing.
The commands needed to extract files from a tar.lz archive have been
documented in the output of '--help' and in the man page.
9 new test files have been added to the testsuite.