diff --git a/COPYING b/COPYING
index 43c90d0598c5..20e60d5b2427 100644
--- a/COPYING
+++ b/COPYING
@@ -47,7 +47,7 @@ XZ Utils Licensing
naturally it is not legally required. Here is an example of a good
notice to put into "about box" or into documentation:
- This software includes code from XZ Utils .
+ This software includes code from XZ Utils .
The following license texts are included in the following files:
- COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1
diff --git a/ChangeLog b/ChangeLog
index 781b673b092a..955b113008a2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,284 @@
+commit b5be61cc06088bb07f488f9baf7d447ff47b37c1
+Author: Lasse Collin
+Date: 2018-04-29 19:00:06 +0300
+
+ Bump version and soname for 5.2.4.
+
+ src/liblzma/Makefile.am | 2 +-
+ src/liblzma/api/lzma/version.h | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+commit c47fa6d06745bb2e99866e76b81ac7a9c5a8bfec
+Author: Lasse Collin
+Date: 2018-04-29 18:48:00 +0300
+
+ extra/scanlzma: Fix compiler warnings.
+
+ extra/scanlzma/scanlzma.c | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+commit 7b350fe21aa4fd6495a3b6188a40e3f1ae7c0edf
+Author: Lasse Collin
+Date: 2018-04-29 18:15:37 +0300
+
+ Add NEWS for 5.2.4.
+
+ NEWS | 27 +++++++++++++++++++++++++++
+ 1 file changed, 27 insertions(+)
+
+commit 5801591162a280aa52d156dfde42c531ec7fd8b6
+Author: Lasse Collin
+Date: 2018-02-06 19:36:30 +0200
+
+ Update THANKS.
+
+ THANKS | 2 ++
+ 1 file changed, 2 insertions(+)
+
+commit c4a616f4536146f8906e1b4412eefeec07b28fae
+Author: Ben Boeckel
+Date: 2018-01-29 13:58:18 -0500
+
+ nothrow: use noexcept for C++11 and newer
+
+ In C++11, the `throw()` specifier is deprecated and `noexcept` is
+ preffered instead.
+
+ src/liblzma/api/lzma.h | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+commit 0b8947782ff3c5ef830a7f85412e44dcf3cdeb77
+Author: Lasse Collin
+Date: 2018-02-06 18:02:48 +0200
+
+ liblzma: Remove incorrect #ifdef from range_common.h.
+
+ In most cases it was harmless but it could affect some
+ custom build systems.
+
+ Thanks to Pippijn van Steenhoven.
+
+ src/liblzma/rangecoder/range_common.h | 4 +---
+ 1 file changed, 1 insertion(+), 3 deletions(-)
+
+commit 48f3b9f73ffea7f55d5678997aba0e79d2e82168
+Author: Lasse Collin
+Date: 2018-01-10 22:10:39 +0200
+
+ Update THANKS.
+
+ THANKS | 1 +
+ 1 file changed, 1 insertion(+)
+
+commit a3ce3e902342be37c626a561ce3d9ffcf27d0f94
+Author: Lasse Collin
+Date: 2018-01-10 21:54:27 +0200
+
+ tuklib_integer: New Intel C compiler needs immintrin.h.
+
+ Thanks to Melanie Blower (Intel) for the patch.
+
+ src/common/tuklib_integer.h | 11 +++++++++++
+ 1 file changed, 11 insertions(+)
+
+commit 4505ca483985f88c6923c05a43b4327feaab83b1
+Author: Lasse Collin
+Date: 2017-09-24 20:04:24 +0300
+
+ Update THANKS.
+
+ THANKS | 1 +
+ 1 file changed, 1 insertion(+)
+
+commit 1ef3cc226e3ce173575c218238b71a4eecabc470
+Author: Lasse Collin
+Date: 2017-09-16 20:36:20 +0300
+
+ Windows: Fix paths in VS project files.
+
+ Some paths use slashes instead of backslashes as directory
+ separators... now it should work (I tested VS2013 version).
+
+ windows/vs2013/liblzma.vcxproj | 12 ++++++------
+ windows/vs2013/liblzma_dll.vcxproj | 24 ++++++++++++------------
+ windows/vs2017/liblzma.vcxproj | 12 ++++++------
+ windows/vs2017/liblzma_dll.vcxproj | 24 ++++++++++++------------
+ 4 files changed, 36 insertions(+), 36 deletions(-)
+
+commit e775d2a8189d24f60470e6e49d8af881df3a1680
+Author: Lasse Collin
+Date: 2017-09-16 12:54:23 +0300
+
+ Windows: Add project files for VS2017.
+
+ These files match the v5.2 branch (no file info decoder).
+
+ windows/vs2017/config.h | 148 ++++++++++++++
+ windows/vs2017/liblzma.vcxproj | 355 ++++++++++++++++++++++++++++++++++
+ windows/vs2017/liblzma_dll.vcxproj | 384 +++++++++++++++++++++++++++++++++++++
+ windows/vs2017/xz_win.sln | 48 +++++
+ 4 files changed, 935 insertions(+)
+
+commit 10e02e0fbb6e2173f8b41f6e39b7b570f47dd74d
+Author: Lasse Collin
+Date: 2017-09-16 12:39:43 +0300
+
+ Windows: Move VS2013 files into windows/vs2013 directory.
+
+ windows/{ => vs2013}/config.h | 0
+ windows/{ => vs2013}/liblzma.vcxproj | 278 +++++++++++++++---------------
+ windows/{ => vs2013}/liblzma_dll.vcxproj | 280 +++++++++++++++----------------
+ windows/{ => vs2013}/xz_win.sln | 0
+ 4 files changed, 279 insertions(+), 279 deletions(-)
+
+commit 06eebd4543196ded36fa9b8b9544195b38b24ef2
+Author: Lasse Collin
+Date: 2017-08-14 20:08:33 +0300
+
+ Fix or hide warnings from GCC 7's -Wimplicit-fallthrough.
+
+ src/liblzma/lzma/lzma_decoder.c | 6 ++++++
+ src/xz/list.c | 2 ++
+ 2 files changed, 8 insertions(+)
+
+commit ea4ea1dffafebaa8b2770bf3eca46900e4dd22dc
+Author: Alexey Tourbin
+Date: 2017-05-16 23:56:35 +0300
+
+ Docs: Fix a typo in a comment in doc/examples/02_decompress.c.
+
+ doc/examples/02_decompress.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+commit eb2ef4c79bf405ea0d215f3b1df3d0eaf5e1d27b
+Author: Lasse Collin
+Date: 2017-05-23 18:34:43 +0300
+
+ xz: Fix "xz --list --robot missing_or_bad_file.xz".
+
+ It ended up printing an uninitialized char-array when trying to
+ print the check names (column 7) on the "totals" line.
+
+ This also changes the column 12 (minimum xz version) to
+ 50000002 (xz 5.0.0) instead of 0 when there are no valid
+ input files.
+
+ Thanks to kidmin for the bug report.
+
+ src/xz/list.c | 8 ++++++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+
+commit 3ea5dbd9b0d79048e336e40cef3b6d814fb74e13
+Author: Lasse Collin
+Date: 2017-04-24 19:48:47 +0300
+
+ Build: Omit pre-5.0.0 entries from the generated ChangeLog.
+
+ It makes ChangeLog significantly smaller.
+
+ Makefile.am | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+commit bae24675936df99064de1502593c006bd902594b
+Author: Lasse Collin
+Date: 2017-04-24 19:30:22 +0300
+
+ Update the Git repository URL to HTTPS in ChangeLog.
+
+ ChangeLog | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+commit 70f479211973b5361f4d7cb08ba5be69b4266e7a
+Author: Lasse Collin
+Date: 2017-04-19 22:17:35 +0300
+
+ Update the home page URLs to HTTPS.
+
+ COPYING | 2 +-
+ README | 2 +-
+ configure.ac | 2 +-
+ doc/faq.txt | 4 ++--
+ dos/config.h | 2 +-
+ src/common/common_w32res.rc | 2 +-
+ src/xz/xz.1 | 6 +++---
+ src/xzdec/xzdec.1 | 4 ++--
+ windows/README-Windows.txt | 2 +-
+ windows/config.h | 2 +-
+ 10 files changed, 14 insertions(+), 14 deletions(-)
+
+commit 2a4b2fa75d06a097261a02ecd3cf2b6d449bf754
+Author: Lasse Collin
+Date: 2017-03-30 22:01:54 +0300
+
+ xz: Use POSIX_FADV_RANDOM for in "xz --list" mode.
+
+ xz --list is random access so POSIX_FADV_SEQUENTIAL was clearly
+ wrong.
+
+ src/xz/file_io.c | 10 ++++++++--
+ 1 file changed, 8 insertions(+), 2 deletions(-)
+
+commit eb25743ade39170cffd9566a1aae272098cce216
+Author: Lasse Collin
+Date: 2017-03-30 19:47:45 +0300
+
+ liblzma: Fix lzma_memlimit_set(strm, 0).
+
+ The 0 got treated specially in a buggy way and as a result
+ the function did nothing. The API doc said that 0 was supposed
+ to return LZMA_PROG_ERROR but it didn't.
+
+ Now 0 is treated as if 1 had been specified. This is done because
+ 0 is already used to indicate an error from lzma_memlimit_get()
+ and lzma_memusage().
+
+ In addition, lzma_memlimit_set() no longer checks that the new
+ limit is at least LZMA_MEMUSAGE_BASE. It's counter-productive
+ for the Index decoder and was actually needed only by the
+ auto decoder. Auto decoder has now been modified to check for
+ LZMA_MEMUSAGE_BASE.
+
+ src/liblzma/api/lzma/base.h | 7 ++++++-
+ src/liblzma/common/auto_decoder.c | 3 +++
+ src/liblzma/common/common.c | 6 ++++--
+ 3 files changed, 13 insertions(+), 3 deletions(-)
+
+commit ef36c6362f3f3853f21b8a6359bcd06576ebf207
+Author: Lasse Collin
+Date: 2017-03-30 19:16:55 +0300
+
+ liblzma: Similar memlimit fix for stream_, alone_, and auto_decoder.
+
+ src/liblzma/api/lzma/container.h | 21 +++++++++++++++++----
+ src/liblzma/common/alone_decoder.c | 5 +----
+ src/liblzma/common/auto_decoder.c | 5 +----
+ src/liblzma/common/stream_decoder.c | 5 +----
+ 4 files changed, 20 insertions(+), 16 deletions(-)
+
+commit 57616032650f03840480b696d7878acdd2065521
+Author: Lasse Collin
+Date: 2017-03-30 18:58:18 +0300
+
+ liblzma: Fix handling of memlimit == 0 in lzma_index_decoder().
+
+ It returned LZMA_PROG_ERROR, which was done to avoid zero as
+ the limit (because it's a special value elsewhere), but using
+ LZMA_PROG_ERROR is simply inconvenient and can cause bugs.
+
+ The fix/workaround is to treat 0 as if it were 1 byte. It's
+ effectively the same thing. The only weird consequence is
+ that then lzma_memlimit_get() will return 1 even when 0 was
+ specified as the limit.
+
+ This fixes a very rare corner case in xz --list where a specific
+ memory usage limit and a multi-stream file could print the
+ error message "Internal error (bug)" instead of saying that
+ the memory usage limit is too low.
+
+ src/liblzma/api/lzma/index.h | 18 +++++++++++-------
+ src/liblzma/common/index_decoder.c | 4 ++--
+ 2 files changed, 13 insertions(+), 9 deletions(-)
+
commit 3d566cd519017eee1a400e7961ff14058dfaf33c
Author: Lasse Collin
Date: 2016-12-30 13:26:36 +0200
@@ -5332,10037 +5613,3 @@ Date: 2010-10-23 14:02:53 +0300
src/liblzma/Makefile.am | 2 +-
src/liblzma/api/lzma/version.h | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
-
-commit 8c947e9291691629714dafb4536c718b6cc24fbd
-Author: Lasse Collin
-Date: 2010-10-23 12:30:54 +0300
-
- liblzma: Make lzma_code() check the reserved members in lzma_stream.
-
- If any of the reserved members in lzma_stream are non-zero
- or non-NULL, LZMA_OPTIONS_ERROR is returned. It is possible
- that a new feature in the future is indicated by just setting
- a reserved member to some other value, so the old liblzma
- version need to catch it as an unsupported feature.
-
- src/liblzma/common/common.c | 14 ++++++++++++++
- 1 file changed, 14 insertions(+)
-
-commit e61d85e082743ebd2dd0ff28fc0a82482ede0538
-Author: Lasse Collin
-Date: 2010-10-23 12:26:33 +0300
-
- Windows: Use MinGW's stdio functions.
-
- The non-standard ones from msvcrt.dll appear to work
- most of the time with XZ Utils, but there are some
- corner cases where things may go very wrong. So it's
- good to use the better replacements provided by
- MinGW(-w64) runtime.
-
- src/common/sysdefs.h | 5 +++++
- 1 file changed, 5 insertions(+)
-
-commit 23e23f1dc029146714c9a98313ab3ea93d71a2fc
-Author: Lasse Collin
-Date: 2010-10-23 12:21:32 +0300
-
- liblzma: Use 512 as INDEX_GROUP_SIZE.
-
- This lets compiler use shifting instead of 64-bit division.
-
- src/liblzma/common/index.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 613939fc82603b75b59eee840871a05bc8dd08e0
-Author: Lasse Collin
-Date: 2010-10-23 12:20:11 +0300
-
- liblzma: A few ABI tweaks to reserve space in structures.
-
- src/liblzma/api/lzma/base.h | 7 ++++++-
- src/liblzma/api/lzma/lzma.h | 4 ++--
- src/liblzma/api/lzma/stream_flags.h | 4 ----
- 3 files changed, 8 insertions(+), 7 deletions(-)
-
-commit 68b83f252df3d27480a9f6f03445d16f6506fef1
-Author: Lasse Collin
-Date: 2010-10-21 23:16:11 +0300
-
- xz: Make sure that message_strm() can never return NULL.
-
- src/xz/message.c | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-commit d09c5753e33ff96ee57edb6d1e98e34041203695
-Author: Lasse Collin
-Date: 2010-10-21 23:06:31 +0300
-
- liblzma: Update the comments in the API headers.
-
- Adding support for LZMA_FINISH for Index encoding and
- decoding needed tiny additions to the relevant .c files too.
-
- src/liblzma/api/lzma.h | 4 +--
- src/liblzma/api/lzma/base.h | 38 +++++++++++++--------------
- src/liblzma/api/lzma/bcj.h | 4 +--
- src/liblzma/api/lzma/block.h | 4 +--
- src/liblzma/api/lzma/container.h | 26 ++++++++++++-------
- src/liblzma/api/lzma/filter.h | 51 ++++++++++++++++++-------------------
- src/liblzma/api/lzma/hardware.h | 3 +--
- src/liblzma/api/lzma/index.h | 28 ++++++++++++--------
- src/liblzma/api/lzma/index_hash.h | 2 +-
- src/liblzma/api/lzma/lzma.h | 46 ++++++++++++++++++++++-----------
- src/liblzma/api/lzma/stream_flags.h | 4 +--
- src/liblzma/api/lzma/vli.h | 31 +++++++++++-----------
- src/liblzma/common/index_decoder.c | 1 +
- src/liblzma/common/index_encoder.c | 1 +
- 14 files changed, 136 insertions(+), 107 deletions(-)
-
-commit 33c1c0e102eb529588503b8beea0903a45488fad
-Author: Lasse Collin
-Date: 2010-10-19 12:08:30 +0300
-
- Update INSTALL.generic.
-
- INSTALL.generic | 99 ++++++++++++++++++++++++++++++++++++++++++++++-----------
- 1 file changed, 81 insertions(+), 18 deletions(-)
-
-commit 0076e03641f201c4b77dddd5a6db5880be19a78c
-Author: Lasse Collin
-Date: 2010-10-19 11:44:37 +0300
-
- Clean up a few FIXMEs and TODOs.
-
- lzma_chunk_size() was commented out because it is
- currently useless.
-
- src/liblzma/common/filter_encoder.c | 2 ++
- src/liblzma/common/filter_encoder.h | 4 ++--
- src/liblzma/lzma/lzma2_decoder.c | 1 -
- src/liblzma/lzma/lzma_decoder.c | 4 ++--
- src/liblzma/lzma/lzma_encoder.c | 2 +-
- src/xz/message.h | 2 +-
- 6 files changed, 8 insertions(+), 7 deletions(-)
-
-commit ce34ec4f54ff8b753da236f371ad8dd23c8135c9
-Author: Lasse Collin
-Date: 2010-10-19 10:21:08 +0300
-
- Update docs.
-
- INSTALL | 192 +++++++++++++++++++++++++++++++++++++++++--------------------
- PACKAGERS | 104 +++++++++------------------------
- TODO | 17 ++++--
- dos/README | 2 +-
- 4 files changed, 172 insertions(+), 143 deletions(-)
-
-commit f0fa880d247e73264d2c04fe31fb3412318a0026
-Author: Lasse Collin
-Date: 2010-10-12 15:13:30 +0300
-
- xz: Avoid raise() also on OpenVMS.
-
- This is similar to DOS/DJGPP that killing the program
- with a signal will print a backtrace or a similar message.
-
- src/xz/signals.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit ac462b1c47c451f5c62e428306314c4bdad8ae7f
-Author: Lasse Collin
-Date: 2010-10-11 21:26:19 +0300
-
- xz: Avoid SA_RESTART for portability reasons.
-
- SA_RESTART is not as portable as I had hoped. It's missing
- at least from OpenVMS, QNX, and DJGPP). Luckily we can do
- fine without SA_RESTART.
-
- src/xz/message.c | 38 +++++++++++++++-----------------------
- src/xz/message.h | 4 ++++
- src/xz/signals.c | 6 ++++++
- 3 files changed, 25 insertions(+), 23 deletions(-)
-
-commit d52b411716a614c202e89ba732492efb9916cd3f
-Author: Lasse Collin
-Date: 2010-10-10 17:58:58 +0300
-
- xz: Use "%"PRIu32 instead of "%d" in a format string.
-
- src/xz/message.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit ae74d1bdeb075c3beefe76e1136c5741804e7e91
-Author: Lasse Collin
-Date: 2010-10-10 17:43:26 +0300
-
- test_files.sh: Fix the first line.
-
- For some reason this prevented running the test only
- on OS/2 and even on that it broke only recently.
-
- Thanks to Elbert Pol.
-
- tests/test_files.sh | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit d492b80ddd6f9a13419de6d102df7374d8f448e8
-Author: Lasse Collin
-Date: 2010-10-10 16:49:01 +0300
-
- lzmainfo: Use "%"PRIu32 instead of "%u" for uint32_t.
-
- src/lzmainfo/lzmainfo.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 825e859a9054bd91202e5723c41a17e72f63040a
-Author: Lasse Collin
-Date: 2010-10-10 16:47:01 +0300
-
- lzmainfo: Use fileno(stdin) instead of STDIN_FILENO.
-
- src/lzmainfo/lzmainfo.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit acbc4cdecbeec2a4dfaac04f185ece49b2ff17c8
-Author: Lasse Collin
-Date: 2010-10-09 23:20:51 +0300
-
- lzmainfo: Use setmode() on DOS-like systems.
-
- src/lzmainfo/lzmainfo.c | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-commit ef364d3abc5647111c5424ea0d83a567e184a23b
-Author: Lasse Collin
-Date: 2010-10-09 21:51:03 +0300
-
- OS/2 and DOS: Be less verbose on signals.
-
- Calling raise() to kill xz when user has pressed C-c
- is a bit verbose on OS/2 and DOS/DJGPP. Instead of
- calling raise(), set only the exit status to 1.
-
- src/xz/signals.c | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-commit 5629c4be07b6c67e79842b2569da1cedc9c0d69a
-Author: Lasse Collin
-Date: 2010-10-09 19:28:49 +0300
-
- DOS: Update the Makefile, config.h and README.
-
- This is now simpler and builds only xz.exe.
-
- dos/Makefile | 211 +++++++++++++++--------------------------------------------
- dos/README | 73 +++++++--------------
- dos/config.h | 45 ++++---------
- 3 files changed, 86 insertions(+), 243 deletions(-)
-
-commit f25a77e6b9bc48a243ddfbbd755b7960eec7e0ac
-Author: Lasse Collin
-Date: 2010-10-09 18:57:55 +0300
-
- Windows: Put some license info into README-Windows.txt.
-
- windows/README-Windows.txt | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-commit e75100f549f85d231df25c07aa94d63e78e2d668
-Author: Lasse Collin
-Date: 2010-10-09 18:57:04 +0300
-
- Windows: Fix a diagnostics bug in build.bash.
-
- windows/build.bash | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit efeb998a2b1025df1c1d202cc7d21d866cd1c336
-Author: Lasse Collin
-Date: 2010-10-09 13:02:15 +0300
-
- lzmainfo: Add Windows resource file.
-
- src/lzmainfo/Makefile.am | 9 +++++++++
- src/lzmainfo/lzmainfo_w32res.rc | 12 ++++++++++++
- 2 files changed, 21 insertions(+)
-
-commit 389d418445f1623593dfdbba55d52fbb6d1205f5
-Author: Lasse Collin
-Date: 2010-10-09 12:57:25 +0300
-
- Add missing public domain notice to lzmadec_w32res.rc.
-
- src/xzdec/lzmadec_w32res.rc | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-commit 6389c773a4912dd9f111256d74ba1605230a7957
-Author: Lasse Collin
-Date: 2010-10-09 12:52:12 +0300
-
- Windows: Update common_w32res.rc.
-
- src/common/common_w32res.rc | 9 +++------
- 1 file changed, 3 insertions(+), 6 deletions(-)
-
-commit 71275457ca24c9b01721f5cfc3638cf094daf454
-Author: Lasse Collin
-Date: 2010-10-09 12:27:08 +0300
-
- Windows: Make build.bash prefer MinGW-w32 over MinGW.
-
- This is simply for licensing reasons. The 64-bit version
- will be built with MinGW-w64 anyway (at least for now),
- so using it also for 32-bit build allows using the same
- copyright notice about the MinGW-w64/w32 runtime.
-
- Note that using MinGW would require a copyright notice too,
- because its runtime is not in the public domain either even
- though MinGW's home page claims that it is public domain.
- See .
-
- windows/build.bash | 18 +++++++++---------
- 1 file changed, 9 insertions(+), 9 deletions(-)
-
-commit 3ac35719d8433af937af6491383d4a50e343099b
-Author: Lasse Collin
-Date: 2010-10-09 11:33:21 +0300
-
- Windows: Copy COPYING-Windows.txt (if it exists) to the package.
-
- Also, put README-Windows.txt to the doc directory like
- the other documentation files.
-
- windows/build.bash | 14 ++++++++++++--
- 1 file changed, 12 insertions(+), 2 deletions(-)
-
-commit 7b5db576fd7a4a67813b8437a9ccd4dbc94bbaae
-Author: Lasse Collin
-Date: 2010-10-08 21:42:37 +0300
-
- Windows: Fix build.bash again.
-
- 630a8beda34af0ac153c8051b1bf01230558e422 wasn't good.
-
- windows/build.bash | 7 ++++---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-commit d3cd7abe85ec7c2f46cf198b15c00d5d119df3dd
-Author: Lasse Collin
-Date: 2010-10-08 16:53:20 +0300
-
- Use LZMA_VERSION_STRING instead of PACKAGE_VERSION.
-
- Those are the same thing, and the former makes it a bit
- easier to build the code with other build systems, because
- one doesn't need to update the version number into custom
- config.h.
-
- This change affects only lzmainfo. Other tools were already
- using LZMA_VERSION_STRING.
-
- src/lzmainfo/lzmainfo.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 084c60d318f2dbaef4078d9b100b4a373d0c3a7f
-Author: Lasse Collin
-Date: 2010-10-08 15:59:25 +0300
-
- configure.ac: Remove two unused defines.
-
- configure.ac | 4 ----
- 1 file changed, 4 deletions(-)
-
-commit 11f51b6714357cb67ec7e56ed9575c199b5581fe
-Author: Lasse Collin
-Date: 2010-10-08 15:32:29 +0300
-
- Make tests accommodate missing xz or xzdec.
-
- tests/test_compress.sh | 47 ++++++++++++++++++++++++++++++-----------------
- tests/test_files.sh | 28 ++++++++++++++++++++++++++--
- 2 files changed, 56 insertions(+), 19 deletions(-)
-
-commit b1c7368f95e93ccdefdd0748e04398c26766f47f
-Author: Lasse Collin
-Date: 2010-10-08 15:25:45 +0300
-
- Build: Add options to disable individual command line tools.
-
- configure.ac | 38 ++++++++++++++++++++++++++++++
- src/Makefile.am | 15 +++++++++++-
- src/scripts/Makefile.am | 62 +++++++++++++++++++++----------------------------
- src/xz/Makefile.am | 6 ++++-
- src/xzdec/Makefile.am | 12 ++++++++--
- 5 files changed, 93 insertions(+), 40 deletions(-)
-
-commit 630a8beda34af0ac153c8051b1bf01230558e422
-Author: Lasse Collin
-Date: 2010-10-07 00:44:53 +0300
-
- Windows: Make build.bash work without --enable-dynamic=no.
-
- windows/build.bash | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit f9907503f882a745dce9d84c2968f6c175ba966a
-Author: Lasse Collin
-Date: 2010-10-05 14:13:16 +0300
-
- Build: Remove the static/dynamic tricks.
-
- Most distros want xz linked against shared liblzma, so
- it doesn't help much to require --enable-dynamic for that.
- Those who want to avoid PIC on x86-32 to get better
- performance, can still do it e.g. by using --disable-shared
- to compile xz and then another pass to compile shared liblzma.
-
- Part of these static/dynamic tricks were needed for Windows
- in the past. Nowadays we rely on GCC and binutils to do the
- right thing with auto-import. If the Autotooled build system
- needs to support some other toolchain on Windows in the future,
- this may need some rethinking.
-
- configure.ac | 74 ------------------------------------------------
- debug/Makefile.am | 5 +---
- src/lzmainfo/Makefile.am | 4 +--
- src/xz/Makefile.am | 4 +--
- src/xzdec/Makefile.am | 4 +--
- tests/Makefile.am | 5 +---
- 6 files changed, 5 insertions(+), 91 deletions(-)
-
-commit fda4724d8114fccfa31c1839c15479f350c2fb4c
-Author: Lasse Collin
-Date: 2010-10-05 12:18:58 +0300
-
- configure.ac: Silence a warning from Autoconf 2.68.
-
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 80b5675fa62c87426fe86f8fcd20feeabc4361b9
-Author: Lasse Collin
-Date: 2010-10-04 19:43:01 +0300
-
- A few more languages files to the xz man page.
-
- Thanks to Jonathan Nieder.
-
- src/xz/xz.1 | 45 ++++++++++++++++++++++++---------------------
- 1 file changed, 24 insertions(+), 21 deletions(-)
-
-commit f9722dbeca4dc4c43cfd15d122dafaac50b0a0bb
-Author: Lasse Collin
-Date: 2010-10-02 12:07:33 +0300
-
- Update the FAQ.
-
- doc/faq.txt | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
- 1 file changed, 100 insertions(+), 4 deletions(-)
-
-commit 61ae593661e8dc402394e84d567ca2044a51572b
-Author: Lasse Collin
-Date: 2010-10-02 11:38:20 +0300
-
- liblzma: Small fixes to comments in the API headers.
-
- src/liblzma/api/lzma/lzma.h | 10 +++++++---
- 1 file changed, 7 insertions(+), 3 deletions(-)
-
-commit 9166682dc601fd42c1b9510572e3f917d18de504
-Author: Lasse Collin
-Date: 2010-09-28 11:40:12 +0300
-
- Create the PDF versions of the man pages better.
-
- Makefile.am | 14 +++++++------
- build-aux/manconv.sh | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++
- 2 files changed, 66 insertions(+), 6 deletions(-)
-
-commit 17d3c61edd35de8fa884944fc70d1db86daa5dd8
-Author: Lasse Collin
-Date: 2010-09-28 10:59:53 +0300
-
- Move version.sh to build-aux.
-
- Makefile.am | 4 ++--
- version.sh => build-aux/version.sh | 0
- configure.ac | 2 +-
- windows/build.bash | 2 +-
- 4 files changed, 4 insertions(+), 4 deletions(-)
-
-commit 84af9d8770451339a692e9b70f96cf56156a6069
-Author: Lasse Collin
-Date: 2010-09-28 10:53:02 +0300
-
- Update .gitignore.
-
- .gitignore | 10 +++++++++-
- 1 file changed, 9 insertions(+), 1 deletion(-)
-
-commit 31575a449ac64c523da3bab8d0c0b522cdc7c780
-Author: Lasse Collin
-Date: 2010-09-28 01:17:14 +0300
-
- Fix accomodate -> accommodate on the xz man page.
-
- src/xz/xz.1 | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit cec0ddc8ec4ce81685a51998b978e22167e461f9
-Author: Lasse Collin
-Date: 2010-09-27 23:29:34 +0300
-
- Major man page updates.
-
- Lots of content was updated on the xz man page.
-
- Technical improvements:
- - Start a new sentence on a new line.
- - Use fairly short lines.
- - Use constant-width font for examples (where supported).
- - Some minor cleanups.
-
- Thanks to Jonathan Nieder for some language fixes.
-
- src/lzmainfo/lzmainfo.1 | 25 +-
- src/scripts/xzdiff.1 | 15 +-
- src/scripts/xzgrep.1 | 11 +-
- src/scripts/xzless.1 | 13 +-
- src/scripts/xzmore.1 | 9 +-
- src/xz/xz.1 | 1964 ++++++++++++++++++++++++++++++++---------------
- src/xzdec/xzdec.1 | 39 +-
- 7 files changed, 1435 insertions(+), 641 deletions(-)
-
-commit 075257ab0416a0603be930082e31a5703e4ba345
-Author: Lasse Collin
-Date: 2010-09-26 18:10:31 +0300
-
- Fix the preset -3e.
-
- depth=0 was missing.
-
- src/liblzma/lzma/lzma_encoder_presets.c | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 2577da9ebdba13fbe99ae5ee8bde35f7ed60f6d1
-Author: Lasse Collin
-Date: 2010-09-23 14:03:10 +0300
-
- Add translations.bash and translation notes to README.
-
- translations.bash prints some messages from xz, which
- hopefully makes it a bit easier to test translations.
-
- README | 96 +++++++++++++++++++++++++++++++++++++++++++++--
- debug/translation.bash | 100 +++++++++++++++++++++++++++++++++++++++++++++++++
- 2 files changed, 192 insertions(+), 4 deletions(-)
-
-commit a3c5997c57e5b1a20aae6d1071b584b4f17d0b23
-Author: Lasse Collin
-Date: 2010-09-17 22:14:30 +0300
-
- xz: Update the Czech translation.
-
- Thanks to Marek Černocký.
-
- po/cs.po | 202 +++++++++++++++++++++++++++++++++++++++++----------------------
- 1 file changed, 131 insertions(+), 71 deletions(-)
-
-commit a1766af582dc23fddd9da1eeb4b9d61e3eb4c2e6
-Author: Lasse Collin
-Date: 2010-09-16 23:40:41 +0300
-
- xz: Add Italian translation.
-
- Thanks to Milo Casagrande and Lorenzo De Liso.
-
- THANKS | 2 +
- po/LINGUAS | 1 +
- po/it.po | 902 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- 3 files changed, 905 insertions(+)
-
-commit 21088018554e2b0e02914205377ceb6e34a090bd
-Author: Lasse Collin
-Date: 2010-09-15 00:34:13 +0300
-
- xz: Edit a translators comment.
-
- src/xz/list.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit be16e28ece1b492b8f93382b7fa1cc4da23c6ff6
-Author: Lasse Collin
-Date: 2010-09-14 22:47:14 +0300
-
- xz: Add German translation.
-
- Thanks to Andre Noll.
-
- THANKS | 1 +
- po/LINGUAS | 1 +
- po/de.po | 903 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- 3 files changed, 905 insertions(+)
-
-commit e23ea74f3240e6b69683f9e69d1716e0f9e9092b
-Author: Lasse Collin
-Date: 2010-09-10 14:30:25 +0300
-
- Updated README.
-
- README | 2 --
- 1 file changed, 2 deletions(-)
-
-commit 8dad2fd69336985adb9f774fa96dc9c0efcb5a71
-Author: Lasse Collin
-Date: 2010-09-10 14:30:07 +0300
-
- Updated INSTALL.
-
- INSTALL | 7 ++++---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-commit 0b5f07fe3728c27cce416ddc40f7e4803ae96ac2
-Author: Lasse Collin
-Date: 2010-09-10 14:26:20 +0300
-
- Updated the git repository address in ChangeLog.
-
- ChangeLog | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit a8760203f93a69bc39fd14520a6e9e7b7d70be06
-Author: Lasse Collin
-Date: 2010-09-10 14:09:33 +0300
-
- xz: Add a comment to translators about "literal context bits".
-
- src/xz/message.c | 4 ++++
- 1 file changed, 4 insertions(+)
-
-commit bb0b1004f83cdc4d309e1471c2ecaf9f95ce60c5
-Author: Lasse Collin
-Date: 2010-09-10 10:30:33 +0300
-
- xz: Multiple fixes.
-
- The code assumed that printing numbers with thousand separators
- and decimal points would always produce only US-ASCII characters.
- This was used for buffer sizes (with snprintf(), no overflows)
- and aligning columns of the progress indicator and --list. That
- assumption was wrong (e.g. LC_ALL=fi_FI.UTF-8 with glibc), so
- multibyte character support was added in this commit. The old
- way is used if the operating system doesn't have enough multibyte
- support (e.g. lacks wcwidth()).
-
- The sizes of buffers were increased to accomodate multibyte
- characters. I don't know how big they should be exactly, but
- they aren't used for anything critical, so it's not too bad.
- If they still aren't big enough, I hopefully get a bug report.
- snprintf() takes care of avoiding buffer overflows.
-
- Some static buffers were replaced with buffers allocated on
- stack. double_to_str() was removed. uint64_to_str() and
- uint64_to_nicestr() now share the static buffer and test
- for thousand separator support.
-
- Integrity check names "None" and "Unknown-N" (2 <= N <= 15)
- were marked to be translated. I had forgot these, plus they
- wouldn't have worked correctly anyway before this commit,
- because printing tables with multibyte strings didn't work.
-
- Thanks to Marek Černocký for reporting the bug about
- misaligned table columns in --list output.
-
- configure.ac | 1 +
- m4/tuklib_mbstr.m4 | 30 ++++++
- src/common/tuklib_mbstr.h | 66 +++++++++++++
- src/common/tuklib_mbstr_fw.c | 31 ++++++
- src/common/tuklib_mbstr_width.c | 64 +++++++++++++
- src/xz/Makefile.am | 4 +-
- src/xz/list.c | 205 +++++++++++++++++++++++++++-------------
- src/xz/message.c | 56 +++++++----
- src/xz/message.h | 10 +-
- src/xz/private.h | 1 +
- src/xz/util.c | 136 +++++++++-----------------
- src/xz/util.h | 7 --
- 12 files changed, 424 insertions(+), 187 deletions(-)
-
-commit 639f8e2af33cf8a184d59ba56b6df7c098679d61
-Author: Lasse Collin
-Date: 2010-09-08 08:49:22 +0300
-
- Update the Czech translation.
-
- Thanks to Marek Černocký.
-
- po/cs.po | 655 +++++++++++++++++++++++++++++++++++++++++++--------------------
- 1 file changed, 454 insertions(+), 201 deletions(-)
-
-commit 41bc9956ebfd7c86777d33676acf34c45e7ca7c7
-Author: Lasse Collin
-Date: 2010-09-07 12:31:40 +0300
-
- xz: Add a note to translators.
-
- src/xz/hardware.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-commit 77a7746616e555fc08028e883a56d06bf0088b81
-Author: Lasse Collin
-Date: 2010-09-07 10:42:13 +0300
-
- Fix use of N_() and ngettext().
-
- I had somehow thought that N_() is usually used
- as shorthand for ngettext().
-
- This also fixes a missing \n from a call to ngettext().
-
- src/common/tuklib_gettext.h | 4 ++--
- src/xz/list.c | 4 ++--
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-commit e6ad39335842343e622ab51207d1d3cb9caad801
-Author: Lasse Collin
-Date: 2010-09-06 19:43:12 +0300
-
- Add missing files to POTFILES.in.
-
- po/POTFILES.in | 3 +++
- 1 file changed, 3 insertions(+)
-
-commit 58f55131820d2e08a1a6beb9ec0ee2378044eb30
-Author: Lasse Collin
-Date: 2010-09-06 10:16:24 +0300
-
- xz: Improve a comment.
-
- src/xz/file_io.c | 7 ++++---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-commit bcb1b898341f7073f51660d7052d7ed6c5461a66
-Author: Lasse Collin
-Date: 2010-09-05 21:34:29 +0300
-
- xz: Update the comment about NetBSD in file_io.c.
-
- Thanks to Joerg Sonnenberger.
-
- src/xz/file_io.c | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-commit da014d55972f5addbf6b4360d3d8ed2ef4282170
-Author: Lasse Collin
-Date: 2010-09-05 21:11:33 +0300
-
- xz: Use an array instead of pointer for stdin_filename.
-
- Thanks Joerg Sonnenberger.
-
- src/xz/args.c | 2 +-
- src/xz/args.h | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-commit 8c7d3d1a0781c296c6b6e2465becaffd2132f7ee
-Author: Lasse Collin
-Date: 2010-09-05 12:16:17 +0300
-
- xz: Hopefully ease translating the messages in list.c.
-
- src/xz/list.c | 33 +++++++++++++++++++++++----------
- 1 file changed, 23 insertions(+), 10 deletions(-)
-
-commit ef840950ad99cf2955c754875af0e01acf125079
-Author: Lasse Collin
-Date: 2010-09-04 23:14:44 +0300
-
- xz: Fix grammar.
-
- src/xz/options.c | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-commit c46afd6edc04ea140db6c59e8486f5707c810c13
-Author: Lasse Collin
-Date: 2010-09-04 23:12:20 +0300
-
- xz: Use lzma_lzma_preset() to initialize the options structure.
-
- src/xz/options.c | 14 ++------------
- 1 file changed, 2 insertions(+), 12 deletions(-)
-
-commit 8fd3ac046d0b1416a2094fecc456d9e0f4d5d065
-Author: Lasse Collin
-Date: 2010-09-04 22:16:28 +0300
-
- Don't set lc=4 with --extreme.
-
- This should reduce the cases where --extreme makes
- compression worse. On the other hand, some other
- files may now benefit slightly less from --extreme.
-
- src/liblzma/lzma/lzma_encoder_presets.c | 1 -
- 1 file changed, 1 deletion(-)
-
-commit 474bac0c33e94aeaca8ada17ab19972b1424bc2b
-Author: Lasse Collin
-Date: 2010-09-04 22:10:32 +0300
-
- xz: Minor improvements to --help and --long-help.
-
- src/xz/message.c | 24 ++++++++++++------------
- 1 file changed, 12 insertions(+), 12 deletions(-)
-
-commit 373ee26f955617295c5c537b04a153a1969140d2
-Author: Jonathan Nieder
-Date: 2010-09-03 16:49:15 -0500
-
- Adjust memory limits in test_compress.sh
-
- Testing compression at level -4 now requires 48 MiB of free store at
- compression time and 5 MiB at decompression time.
-
- Signed-off-by: Jonathan Nieder
-
- tests/test_compress.sh | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 2fce9312f36727ea82f3430cc5d3a7d243c5f087
-Author: Lasse Collin
-Date: 2010-09-03 15:54:40 +0300
-
- xz: Make -vv show also decompressor memory usage.
-
- src/xz/coder.c | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-commit b4b1cbcb53624ab832f8b3189c74450dc7ea29b6
-Author: Lasse Collin
-Date: 2010-09-03 15:13:12 +0300
-
- Tweak the compression presets -0 .. -5.
-
- "Extreme" mode might need some further tweaking still.
- Docs were not updated yet.
-
- src/liblzma/lzma/lzma_encoder_presets.c | 29 +++++++++++++++++++----------
- 1 file changed, 19 insertions(+), 10 deletions(-)
-
-commit 77fe5954cd3d10fb1837372684cbc133b56b6a87
-Author: Lasse Collin
-Date: 2010-09-03 12:28:41 +0300
-
- liblzma: Adjust default depth calculation for HC3 and HC4.
-
- It was 8 + nice_len / 4, now it is 4 + nice_len / 4.
- This allows faster settings at lower nice_len values,
- even though it seems that I won't use automatic depth
- calcuation with HC3 and HC4 in the presets.
-
- src/liblzma/lz/lz_encoder.c | 7 ++++---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-commit fce69059cf901ce8075a78c7607d591f144a3b5a
-Author: Lasse Collin
-Date: 2010-09-03 11:11:25 +0300
-
- xz: Make --help two lines shorter.
-
- At least for now, the --help option doesn't list any
- options that take arguments, so "Mandatory arguments to..."
- can be omitted.
-
- src/xz/message.c | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-commit a848e47ced6e5e2a564b5c454b2f5a19c2f40298
-Author: Lasse Collin
-Date: 2010-09-02 19:22:35 +0300
-
- xz: Make setting a preset override a custom filter chain.
-
- This is more logical behavior than ignoring preset level
- options once a custom filter chain has been specified.
-
- src/xz/coder.c | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-commit b3ff7ba044eaeab3e424d7b51fe914daf681b1a3
-Author: Lasse Collin
-Date: 2010-09-02 19:09:57 +0300
-
- xz: Always warn if adjusting dictionary size due to memlimit.
-
- src/xz/coder.c | 28 +++++++++-------------------
- 1 file changed, 9 insertions(+), 19 deletions(-)
-
-commit d5653ba8a1ea9c00de4fddc617aba3c51e18139d
-Author: Lasse Collin
-Date: 2010-08-10 11:04:30 +0300
-
- Fix test_compress.sh.
-
- It broke when --memory option was removed from xzdec.
-
- Thanks to Jonathan Nieder.
-
- tests/test_compress.sh | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-commit 792331bdee706aa852a78b171040ebf814c6f3ae
-Author: Lasse Collin
-Date: 2010-08-07 20:45:18 +0300
-
- Disable the memory usage limiter by default.
-
- For several people, the limiter causes bigger problems that
- it solves, so it is better to have it disabled by default.
- Those who want to have a limiter by default need to enable
- it via the environment variable XZ_DEFAULTS.
-
- Support for environment variable XZ_DEFAULTS was added. It is
- parsed before XZ_OPT and technically identical with it. The
- intended uses differ quite a bit though; see the man page.
-
- The memory usage limit can now be set separately for
- compression and decompression using --memlimit-compress and
- --memlimit-decompress. To set both at once, -M or --memlimit
- can be used. --memory was retained as a legacy alias for
- --memlimit for backwards compatibility.
-
- The semantics of --info-memory were changed in backwards
- incompatible way. Compatibility wasn't meaningful due to
- changes in the memory usage limiter functionality.
-
- The memory usage limiter info is no longer shown at the
- bottom of xz --long -help.
-
- The memory usage limiter support for removed completely from xzdec.
-
- xz's man page was updated to match the above changes. Various
- unrelated fixes were also made to the man page.
-
- src/xz/args.c | 87 +++++++++-----
- src/xz/coder.c | 8 +-
- src/xz/hardware.c | 96 +++++++++------
- src/xz/hardware.h | 23 ++--
- src/xz/list.c | 2 +-
- src/xz/message.c | 39 ++-----
- src/xz/message.h | 4 -
- src/xz/xz.1 | 341 ++++++++++++++++++++++++++++++++++--------------------
- src/xzdec/xzdec.1 | 45 +------
- src/xzdec/xzdec.c | 176 +---------------------------
- 10 files changed, 373 insertions(+), 448 deletions(-)
-
-commit 4a45dd4c39f75d25c7a37b6400cb24d4010ca801
-Author: Lasse Collin
-Date: 2010-08-06 20:22:16 +0300
-
- Add missing const to a global constant in xz.
-
- src/xz/args.c | 2 +-
- src/xz/args.h | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-commit 01aa4869cb220b7fdad6d1acbabb2233045daa8f
-Author: Lasse Collin
-Date: 2010-07-28 11:44:55 +0300
-
- Language fixes for man pages.
-
- Thanks to A. Costa and Jonathan Nieder.
-
- src/lzmainfo/lzmainfo.1 | 4 ++--
- src/xz/xz.1 | 6 +++---
- 2 files changed, 5 insertions(+), 5 deletions(-)
-
-commit ce1f0deafe8504e1492bf1b1efb3e3ec950b1a2b
-Author: Lasse Collin
-Date: 2010-07-27 20:47:12 +0300
-
- Windows: Add a note about building a Git repository snapshot
-
- windows/INSTALL-Windows.txt | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-commit 507a4a4dea1e5462f12f7ed4b076c34e02054a38
-Author: Lasse Collin
-Date: 2010-07-27 20:45:03 +0300
-
- Windows: build.sh is a bash script so name it correctly.
-
- INSTALL | 2 +-
- windows/INSTALL-Windows.txt | 6 +++---
- windows/{build.sh => build.bash} | 6 +++---
- 3 files changed, 7 insertions(+), 7 deletions(-)
-
-commit b1cbfd40f049a646a639eb78a3e41e9e3ef73339
-Author: Lasse Collin
-Date: 2010-07-27 20:27:32 +0300
-
- Windows: Don't strip liblzma.a too much.
-
- windows/build.sh | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-commit a540198ffb25fad36380c5e92ac20c2d28eec46a
-Author: Lasse Collin
-Date: 2010-07-13 20:07:26 +0300
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit bab0f01ed931f606b4675aa9f9331a17cec09bad
-Author: Lasse Collin
-Date: 2010-07-13 19:55:50 +0300
-
- Add two simple example programs.
-
- Hopefully these help a bit when learning the basics
- of liblzma API. I plan to write detailed examples about
- both basic and advanced features with lots of comments,
- but these two examples are good have right now.
-
- The examples were written by Daniel Mealha Cabrita. Thanks.
-
- doc/examples/xz_pipe_comp.c | 127 ++++++++++++++++++++++++++++++++++++++++++
- doc/examples/xz_pipe_decomp.c | 115 ++++++++++++++++++++++++++++++++++++++
- 2 files changed, 242 insertions(+)
-
-commit c15c42abb3c8c6e77c778ef06c97a4a10b8b5d00
-Author: Lasse Collin
-Date: 2010-06-15 14:06:29 +0300
-
- Add --no-adjust.
-
- src/xz/args.c | 6 ++++++
- src/xz/coder.c | 8 ++------
- src/xz/coder.h | 4 ++++
- src/xz/message.c | 6 +++++-
- src/xz/xz.1 | 13 +++++++++++--
- 5 files changed, 28 insertions(+), 9 deletions(-)
-
-commit 2130926dd1c839280358172dfadd8d3054bde2b4
-Author: Lasse Collin
-Date: 2010-06-11 21:51:32 +0300
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit bc612d0e0c9e4504c59d49168e87a7ae3e458443
-Author: Lasse Collin
-Date: 2010-06-11 21:48:32 +0300
-
- Clarify the description of the default memlimit in the man page.
-
- Thanks to Denis Excoffier.
-
- src/xz/xz.1 | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit e1b6935d60a00405e6b5b455a3426d2248cc926c
-Author: Lasse Collin
-Date: 2010-06-11 21:43:28 +0300
-
- Fix string to uint64_t conversion.
-
- Thanks to Denis Excoffier for the bug report.
-
- src/xz/util.c | 10 ++++++++--
- src/xzdec/xzdec.c | 13 +++++++++++--
- 2 files changed, 19 insertions(+), 4 deletions(-)
-
-commit 3e49c8acb0f5312948eddb2342dbb5802d4571d0
-Author: Lasse Collin
-Date: 2010-06-11 10:40:28 +0300
-
- Put the git commit to the filename in mydist rule.
-
- Makefile.am | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-commit d8b41eedce486d400f701b757b7b5e4e32276618
-Author: Lasse Collin
-Date: 2010-06-02 23:13:55 +0300
-
- Fix compiling with -Werror.
-
- src/xz/message.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit b5fbab6123a39c9a55cd5d7af410e9aae067d5f8
-Author: Lasse Collin
-Date: 2010-06-02 23:09:22 +0300
-
- Silence a bogus Valgrind warning.
-
- When using -O2 with GCC, it liked to swap two comparisons
- in one "if" statement. It's otherwise fine except that
- the latter part, which is seemingly never executed, got
- executed (nothing wrong with that) and then triggered
- warning in Valgrind about conditional jump depending on
- uninitialized variable. A few people find this annoying
- so do things a bit differently to avoid the warning.
-
- src/liblzma/lz/lz_encoder.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-commit 29a7b250e685852f2f97615493ec49acaf528623
-Author: Lasse Collin
-Date: 2010-06-02 21:32:12 +0300
-
- Fix a Windows-specific FIXME in signal handling code.
-
- src/xz/main.c | 40 +++++++++++++++++++++++++++++++++++-----
- src/xz/private.h | 5 +++++
- src/xz/signals.c | 16 ++++++++--------
- 3 files changed, 48 insertions(+), 13 deletions(-)
-
-commit e89d987056cee7d4e279be3ef3a6cc690bfc0e6d
-Author: Lasse Collin
-Date: 2010-06-02 17:46:58 +0300
-
- Adjust SA_RESTART workaround.
-
- I want to get a bug report if something else than
- DJGPP lacks SA_RESTART.
-
- src/xz/message.c | 14 +++++++-------
- 1 file changed, 7 insertions(+), 7 deletions(-)
-
-commit e243145c84ab5c3be8259fd486ead0de5235b3f0
-Author: Lasse Collin
-Date: 2010-06-01 16:02:30 +0300
-
- xz man page updates.
-
- - Concatenating .xz files and padding
- - List mode
- - Robot mode
- - A few examples (but many more are needed)
-
- src/xz/xz.1 | 385 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
- 1 file changed, 366 insertions(+), 19 deletions(-)
-
-commit ce6dc3c0a891f23a862f80ec08d3b6f0beb2a562
-Author: Lasse Collin
-Date: 2010-06-01 15:51:44 +0300
-
- Major update to xz --list.
-
- src/xz/list.c | 652 ++++++++++++++++++++++++++++++++++++++++++----------------
- 1 file changed, 471 insertions(+), 181 deletions(-)
-
-commit 905e54804a899e4ad526d38fdba7e803ab9b71bd
-Author: Lasse Collin
-Date: 2010-06-01 14:13:03 +0300
-
- Rename message_filters_get() to message_filters_to_str().
-
- src/xz/message.c | 4 ++--
- src/xz/message.h | 2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-commit 4b346ae8af20045027ae5efb068c6d69da3324d2
-Author: Lasse Collin
-Date: 2010-06-01 14:09:12 +0300
-
- Fix a comment.
-
- src/liblzma/api/lzma/index.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 07dc34f6da45c9ab757dad7fd5eef522ad27d296
-Author: Lasse Collin
-Date: 2010-05-27 16:17:42 +0300
-
- Fix lzma_block_compressed_size().
-
- src/liblzma/common/block_util.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-commit 44d70cb154225e47eebf15a3cfbdf3794cbb4593
-Author: Lasse Collin
-Date: 2010-05-27 14:32:51 +0300
-
- Take Cygwin into account in some #if lines.
-
- This change is no-op, but good to have just in case
- for the future.
-
- src/xz/signals.c | 2 +-
- src/xz/signals.h | 4 ++--
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-commit a334348dc02803241cf4e0a539eecdc0e7ad2cc7
-Author: Lasse Collin
-Date: 2010-05-27 13:42:44 +0300
-
- Remove references to the Subblock filter in xz and tests.
-
- Thanks to Jonathan Nieder.
-
- src/xz/message.c | 9 ---------
- tests/test_filter_flags.c | 23 -----------------------
- 2 files changed, 32 deletions(-)
-
-commit 70e5e2f6a7084e6af909deee88ceac2f6efa7893
-Author: Lasse Collin
-Date: 2010-05-27 13:35:36 +0300
-
- Remove unused chunk_size.c.
-
- Thanks to Jonathan Nieder for the reminder.
-
- src/liblzma/common/chunk_size.c | 67 -----------------------------------------
- 1 file changed, 67 deletions(-)
-
-commit 01a414eaf4be6352c06b48001b041b47e8202faa
-Author: Jonathan Nieder
-Date: 2010-05-27 02:31:33 -0500
-
- Use my_min() instead of MIN() in src/xz/list.c
-
- This should have been done in
- 920a69a8d8e4203c5edddd829d932130eac188ea.
-
- src/xz/list.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 920a69a8d8e4203c5edddd829d932130eac188ea
-Author: Lasse Collin
-Date: 2010-05-26 10:36:46 +0300
-
- Rename MIN() and MAX() to my_min() and my_max().
-
- This should avoid some minor portability issues.
-
- debug/full_flush.c | 2 +-
- debug/sync_flush.c | 2 +-
- src/common/sysdefs.h | 12 +++++-------
- src/liblzma/common/block_buffer_encoder.c | 2 +-
- src/liblzma/common/common.c | 2 +-
- src/liblzma/common/stream_buffer_encoder.c | 2 +-
- src/liblzma/delta/delta_encoder.c | 2 +-
- src/liblzma/lz/lz_decoder.c | 7 ++++---
- src/liblzma/lz/lz_decoder.h | 2 +-
- src/liblzma/lz/lz_encoder.c | 2 +-
- src/liblzma/lz/lz_encoder.h | 2 +-
- src/liblzma/lz/lz_encoder_mf.c | 4 ++--
- src/liblzma/lzma/lzma2_encoder.c | 2 +-
- src/liblzma/lzma/lzma_encoder_optimum_fast.c | 2 +-
- src/liblzma/lzma/lzma_encoder_optimum_normal.c | 14 +++++++-------
- src/xz/args.c | 3 ++-
- 16 files changed, 31 insertions(+), 31 deletions(-)
-
-commit 019ae27c24d0c694545a6a46f8b9fb552198b015
-Author: Lasse Collin
-Date: 2010-05-26 10:30:20 +0300
-
- Fix compilation of debug/known_sizes.c.
-
- debug/known_sizes.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 98a4856a6ea84f79c790057a6eb89a25bc45b074
-Author: Lasse Collin
-Date: 2010-05-26 10:28:54 +0300
-
- Remove references to Subblock filter in debug/sync_flush.c.
-
- debug/sync_flush.c | 13 -------------
- 1 file changed, 13 deletions(-)
-
-commit 703d2c33c095c41ae0693ee8c27c45e3847e4535
-Author: Lasse Collin
-Date: 2010-05-26 10:16:57 +0300
-
- Better #error message.
-
- src/common/sysdefs.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit d8a55c48b39703dd83f11089ad01e1ff2ac102e0
-Author: Lasse Collin
-Date: 2010-05-26 09:55:47 +0300
-
- Remove the Subblock filter code for now.
-
- The spec isn't finished and the code didn't compile anymore.
- It won't be included in XZ Utils 5.0.0. It's easy to get it
- back once the spec is done.
-
- configure.ac | 6 +-
- src/liblzma/Makefile.am | 5 -
- src/liblzma/api/Makefile.am | 1 -
- src/liblzma/api/lzma.h | 1 -
- src/liblzma/api/lzma/subblock.h | 200 -----
- src/liblzma/common/common.h | 6 -
- src/liblzma/common/filter_common.c | 9 -
- src/liblzma/common/filter_decoder.c | 16 -
- src/liblzma/common/filter_encoder.c | 12 -
- src/liblzma/subblock/Makefile.inc | 20 -
- src/liblzma/subblock/subblock_decoder.c | 630 ----------------
- src/liblzma/subblock/subblock_decoder.h | 22 -
- src/liblzma/subblock/subblock_decoder_helper.c | 70 --
- src/liblzma/subblock/subblock_decoder_helper.h | 29 -
- src/liblzma/subblock/subblock_encoder.c | 984 -------------------------
- src/liblzma/subblock/subblock_encoder.h | 21 -
- src/xz/args.c | 9 +-
- src/xz/options.c | 61 --
- src/xz/options.h | 7 -
- 19 files changed, 4 insertions(+), 2105 deletions(-)
-
-commit b6377fc990f9b8651149cae0fecb8b9c5904e26d
-Author: Lasse Collin
-Date: 2010-05-16 18:42:22 +0300
-
- Split message_filters().
-
- message_filters_to_str() converts the filter chain to
- a string. message_filters_show() replaces the original
- message_filters().
-
- uint32_to_optstr() was also added to show the dictionary
- size in nicer format when possible.
-
- src/xz/coder.c | 2 +-
- src/xz/message.c | 187 +++++++++++++++++++++++++++++++++++--------------------
- src/xz/message.h | 14 ++++-
- 3 files changed, 134 insertions(+), 69 deletions(-)
-
-commit d9986db782d6cf0f314342127280519339378fa0
-Author: Lasse Collin
-Date: 2010-05-14 23:17:20 +0300
-
- Omit lzma_restrict from the API headers.
-
- It isn't really useful so omitting it makes things
- shorter and slightly more readable.
-
- src/liblzma/api/lzma.h | 12 ------------
- src/liblzma/api/lzma/index.h | 5 ++---
- src/liblzma/api/lzma/vli.h | 11 +++++------
- 3 files changed, 7 insertions(+), 21 deletions(-)
-
-commit 0d3489efca0a723dca0394809fa3e6170843af4b
-Author: Lasse Collin
-Date: 2010-05-10 19:57:24 +0300
-
- Updated INSTALL.
-
- INSTALL | 5 -----
- 1 file changed, 5 deletions(-)
-
-commit 3fb3d594a2b53886adee161b6261e92277f05f7c
-Author: Lasse Collin
-Date: 2010-05-10 19:54:52 +0300
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 6548e304657e77d3a972053db3c41c5daf591113
-Author: Lasse Collin
-Date: 2010-05-10 19:54:15 +0300
-
- Updates to tuklib_physmem and tuklib_cpucores.
-
- Don't use #error to generate compile error, because some
- compilers actually don't take it as an error. This fixes
- tuklib_physmem on IRIX.
-
- Fix incorrect error check for sysconf() return values.
-
- Add AIX, HP-UX, and Tru64 specific code to detect the
- amount RAM.
-
- Add HP-UX specific code to detect the number of CPU cores.
-
- Thanks a lot to Peter O'Gorman for initial patches,
- testing, and debugging these fixes.
-
- m4/tuklib_cpucores.m4 | 33 ++++++++++++++++----
- m4/tuklib_physmem.m4 | 72 ++++++++++++++++++++++++++++++++++++++++++--
- src/common/tuklib_cpucores.c | 14 +++++++--
- src/common/tuklib_physmem.c | 33 +++++++++++++++++++-
- 4 files changed, 141 insertions(+), 11 deletions(-)
-
-commit a290cfee3e23f046889c022aa96b4eca2016fdda
-Author: Lasse Collin
-Date: 2010-04-12 21:55:56 +0300
-
- Show both elapsed time and estimated remaining time in xz -v.
-
- The extra space for showing both has been taken from the
- sizes field. If the sizes grow big, bigger units than MiB
- will be used. It makes it slightly difficult to see that
- progress is still happening with huge files, but it should
- be OK in practice.
-
- Thanks to Trent W. Buck for
- and Jonathan Nieder for suggestions how to fix it.
-
- THANKS | 1 +
- src/xz/message.c | 86 +++++++++++++++++++++++++-------------------------------
- 2 files changed, 39 insertions(+), 48 deletions(-)
-
-commit a1f7a986b8d708f9290da9799ca1b8d7082fad3e
-Author: Lasse Collin
-Date: 2010-03-31 16:47:25 +0300
-
- Add a simple tip to faq.txt about tar and xz.
-
- Thanks to Gilles Espinasse.
-
- THANKS | 1 +
- doc/faq.txt | 6 ++++++
- 2 files changed, 7 insertions(+)
-
-commit c737eec91d200d730aa82662affd6b06ebb0bff0
-Author: Lasse Collin
-Date: 2010-03-22 21:03:03 +0200
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit f4b2b52624b802c786e4e2a8eb6895794dd93b24
-Author: Lasse Collin
-Date: 2010-03-07 19:52:25 +0200
-
- Fix xzgrep to not break if filenames have spaces or quotes.
-
- Thanks to someone who reported the bug on IRC.
-
- src/scripts/xzgrep.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit cf38da00a140bd3bd65b192390ae5553380fd774
-Author: Lasse Collin
-Date: 2010-03-07 13:59:32 +0200
-
- Treat all integer multiplier suffixes as base-2.
-
- Originally both base-2 and base-10 were supported, but since
- there seems to be little need for base-10 in XZ Utils, treat
- everything as base-2 and also be more relaxed about the case
- of the first letter of the suffix. Now xz will accept e.g.
- KiB, Ki, k, K, kB, and KB, and interpret them all as 1024. The
- recommended spelling of the suffixes are still KiB, MiB, and GiB.
-
- src/xz/util.c | 53 +++++++++++++++++++++++------------------------------
- src/xz/xz.1 | 48 ++++++++++++++++++++++++++++--------------------
- src/xzdec/xzdec.c | 42 ++++++++++++++++--------------------------
- 3 files changed, 67 insertions(+), 76 deletions(-)
-
-commit 00fc1211ae7b687ac912098f4479112059deccbd
-Author: Lasse Collin
-Date: 2010-03-07 13:50:23 +0200
-
- Consistently round up the memory usage limit in messages.
-
- It still feels a bit wrong to round 1 byte to 1 MiB but
- at least it is now done consistently so that the same
- byte value is always rounded the same way to MiB.
-
- src/xz/message.c | 5 +++--
- src/xzdec/xzdec.c | 7 +++++--
- 2 files changed, 8 insertions(+), 4 deletions(-)
-
-commit 9886d436ff5615fc70eef32ff757b1e934069621
-Author: Lasse Collin
-Date: 2010-03-07 13:34:34 +0200
-
- Change the default of --enable-assume-ram from 32 to 128 MiB.
-
- This is to allow files created with "xz -9" to be decompressed
- if the amount of RAM cannot be determined.
-
- INSTALL | 5 ++---
- configure.ac | 11 ++++++-----
- 2 files changed, 8 insertions(+), 8 deletions(-)
-
-commit 2672bcc9f85ba28ff648e092e9eb4cd9e69ce418
-Author: Lasse Collin
-Date: 2010-03-07 13:29:28 +0200
-
- Increase the default memory usage limit on "low-memory" systems.
-
- Previously the default limit was always 40 % of RAM. The
- new limit is a little bit more complex:
-
- - If 40 % of RAM is at least 80 MiB, 40 % of RAM is used
- as the limit.
-
- - If 80 % of RAM is over 80 MiB, 80 MiB is used as the limit.
-
- - Otherwise 80 % of RAM is used as the limit.
-
- This should make it possible to decompress files created with
- "xz -9" on more systems. Swapping is generally more expected
- on systems with less RAM, so higher default limit on them
- shouldn't cause too bad surprises in terms of heavy swapping.
- Instead, the higher default limit should reduce the number of
- bad surprises when it used to prevent decompression of files
- created with "xz -9". The DoS prevention system shouldn't be
- a DoS itself.
-
- Note that even with the new default limit, a system with 64 MiB
- RAM cannot decompress files created with "xz -9" without user
- overriding the limit. This should be OK, because if xz is going
- to need more memory than the system has RAM, it will run very
- very slowly and thus it's good that user has to override the limit
- in that case.
-
- src/xz/hardware.c | 43 +++++++++++++++++++++++++++++++------------
- src/xz/xz.1 | 21 +++++++++++++++------
- src/xzdec/xzdec.1 | 8 ++++----
- src/xzdec/xzdec.c | 42 ++++++++++++++++++++++++++++++------------
- 4 files changed, 80 insertions(+), 34 deletions(-)
-
-commit 5527b7269a997e7f335d60f237a64bbf225d9dc7
-Author: Lasse Collin
-Date: 2010-03-06 21:36:19 +0200
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit d0d1c51aea4351288a7e533cce28cb7f852f6b05
-Author: Lasse Collin
-Date: 2010-03-06 21:17:20 +0200
-
- Fix missing initialization in lzma_strm_init().
-
- With bad luck, lzma_code() could return LZMA_BUF_ERROR
- when it shouldn't.
-
- This has been here since the early days of liblzma.
- It got triggered by the modifications made to the xz
- tool in commit 18c10c30d2833f394cd7bce0e6a821044b15832f
- but only when decompressing .lzma files. Somehow I managed
- to miss testing that with Valgrind earlier.
-
- This fixes .
- Thanks to Rafał Mużyło for helping to debug it on IRC.
-
- src/liblzma/common/common.c | 1 +
- 1 file changed, 1 insertion(+)
-
-commit eb7d51a3faf9298c0c7aa9aaeae1023dcf9e37ea
-Author: Lasse Collin
-Date: 2010-02-12 13:16:15 +0200
-
- Collection of language fixes to comments and docs.
-
- Thanks to Jonathan Nieder.
-
- README | 2 +-
- configure.ac | 2 +-
- doc/faq.txt | 2 +-
- extra/7z2lzma/7z2lzma.bash | 2 +-
- src/common/tuklib_progname.c | 2 +-
- src/common/tuklib_progname.h | 2 +-
- src/liblzma/api/lzma/base.h | 8 ++++----
- src/liblzma/api/lzma/bcj.h | 2 +-
- src/liblzma/api/lzma/block.h | 2 +-
- src/liblzma/api/lzma/check.h | 2 +-
- src/liblzma/api/lzma/filter.h | 4 ++--
- src/liblzma/api/lzma/index.h | 6 +++---
- src/liblzma/api/lzma/lzma.h | 2 +-
- src/liblzma/api/lzma/version.h | 2 +-
- src/liblzma/api/lzma/vli.h | 2 +-
- src/liblzma/common/block_header_encoder.c | 2 +-
- src/liblzma/common/chunk_size.c | 4 ++--
- src/liblzma/common/common.h | 4 ++--
- src/liblzma/common/filter_buffer_decoder.c | 2 +-
- src/liblzma/common/filter_encoder.c | 4 ++--
- src/liblzma/common/index.c | 6 +++---
- src/liblzma/common/index_encoder.c | 2 +-
- src/liblzma/common/stream_encoder.c | 2 +-
- src/liblzma/common/vli_decoder.c | 2 +-
- src/liblzma/lz/lz_encoder.c | 2 +-
- src/liblzma/lz/lz_encoder.h | 2 +-
- src/liblzma/lzma/lzma2_encoder.c | 2 +-
- src/liblzma/lzma/lzma_decoder.c | 4 ++--
- src/liblzma/lzma/lzma_decoder.h | 2 +-
- src/liblzma/lzma/lzma_encoder_optimum_fast.c | 2 +-
- src/liblzma/lzma/lzma_encoder_optimum_normal.c | 2 +-
- src/liblzma/lzma/lzma_encoder_private.h | 2 +-
- src/liblzma/simple/simple_coder.c | 2 +-
- src/liblzma/subblock/subblock_encoder.c | 2 +-
- src/scripts/xzdiff.1 | 2 +-
- src/scripts/xzless.1 | 10 +++++-----
- src/xz/coder.c | 2 +-
- src/xz/file_io.c | 2 +-
- src/xz/main.c | 6 +++---
- src/xz/main.h | 2 +-
- src/xz/message.c | 10 +++++-----
- src/xz/message.h | 2 +-
- src/xz/xz.1 | 16 ++++++++--------
- src/xzdec/lzmadec_w32res.rc | 2 +-
- src/xzdec/xzdec_w32res.rc | 2 +-
- tests/test_index.c | 2 +-
- windows/build.sh | 4 ++--
- 47 files changed, 77 insertions(+), 77 deletions(-)
-
-commit 4785f2021aa6a23f1caf724fcc823e562584f225
-Author: Lasse Collin
-Date: 2010-02-12 12:41:20 +0200
-
- Fix jl -> jb in ASM files.
-
- src/liblzma/check/crc32_x86.S | 2 +-
- src/liblzma/check/crc64_x86.S | 4 ++--
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-commit 6b50c9429bf85521d355adc61745d06ee017f8c8
-Author: Lasse Collin
-Date: 2010-02-12 12:31:22 +0200
-
- Use __APPLE__ instead of __MACH__ in ASM files.
-
- This allows the files to work on HURD.
-
- Thanks to Jonathan Nieder.
-
- src/liblzma/check/crc32_x86.S | 8 ++++----
- src/liblzma/check/crc64_x86.S | 8 ++++----
- 2 files changed, 8 insertions(+), 8 deletions(-)
-
-commit 6503fde658a5cdbdd907a788865470dd64771601
-Author: Lasse Collin
-Date: 2010-02-07 19:48:06 +0200
-
- Subtle change to liblzma Block handling API.
-
- lzma_block.version has to be initialized even for
- lzma_block_header_decode(). This way a future version
- of liblzma won't allocate memory in a way that an old
- application doesn't know how to free it.
-
- The subtlety of this change is that all current apps
- using lzma_block_header_decode() will keep working for
- now, because the only possible version value is zero,
- and lzma_block_header_decode() unconditionally sets the
- version to zero even now. Unless fixed, these apps will
- break in the future if a new version of the Block options
- is ever needed.
-
- src/liblzma/api/lzma/block.h | 39 ++++++++++++++++---------------------
- src/liblzma/common/stream_decoder.c | 3 +++
- 2 files changed, 20 insertions(+), 22 deletions(-)
-
-commit dd7c3841ff78cb94ce02b0220c6e4748460970f7
-Author: Lasse Collin
-Date: 2010-02-02 11:50:11 +0200
-
- Fix wrong assertion.
-
- This was added in 455e68c030fde8a8c2f5e254c3b3ab9489bf3735.
-
- src/xz/main.c | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-commit 9d67588c1597849504a3e5ac8bf6f06e7d2ee8be
-Author: Lasse Collin
-Date: 2010-02-01 22:48:42 +0200
-
- Updated TODO.
-
- TODO | 4 ----
- 1 file changed, 4 deletions(-)
-
-commit fef6333f52c8801308c3b78acb7942988541d137
-Author: Lasse Collin
-Date: 2010-02-01 22:47:54 +0200
-
- Fix typos in comments.
-
- src/xz/list.c | 2 +-
- windows/build.sh | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-commit 455e68c030fde8a8c2f5e254c3b3ab9489bf3735
-Author: Lasse Collin
-Date: 2010-02-01 22:46:56 +0200
-
- Fix signal handling for --list.
-
- src/xz/main.c | 19 ++++++++++++++-----
- 1 file changed, 14 insertions(+), 5 deletions(-)
-
-commit 82220a149015616f75641ee8bbea415137535b9b
-Author: Lasse Collin
-Date: 2010-02-01 11:44:45 +0200
-
- Fix compression of symlinks with --force.
-
- xz --force accepted symlinks, but didn't remove
- them after successful compression. Instead, an error
- message was displayed.
-
- src/xz/file_io.c | 14 +++++++++++++-
- 1 file changed, 13 insertions(+), 1 deletion(-)
-
-commit d4da177d5ba3d2ef7323a6f1e06ca16e0478810e
-Author: Lasse Collin
-Date: 2010-02-01 10:20:57 +0200
-
- Fix a comment.
-
- windows/build.sh | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
-commit f9dd797a423a148903cf345b4146cb1fe1eab11d
-Author: Lasse Collin
-Date: 2010-01-31 23:43:54 +0200
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit ee5ddb8b28419fe4923ded5c18a50570a762dcab
-Author: Lasse Collin
-Date: 2010-01-31 23:41:29 +0200
-
- Updated TODO.
-
- TODO | 17 +++++++++++------
- 1 file changed, 11 insertions(+), 6 deletions(-)
-
-commit 11936ad3f5a2e97bda3463c7a56a2f4bb9265ea6
-Author: Lasse Collin
-Date: 2010-01-31 23:35:04 +0200
-
- Mention TODO in README.
-
- README | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 2901a8e7e82af05675b8cd8758a8ceddb111359f
-Author: Lasse Collin
-Date: 2010-01-31 23:31:14 +0200
-
- Updated INSTALL.
-
- INSTALL | 52 ++++++++++++++++++++++++++--------------------------
- 1 file changed, 26 insertions(+), 26 deletions(-)
-
-commit 8884e16864ba53fb4b58623d7537d7ef30c28e11
-Author: Lasse Collin
-Date: 2010-01-31 23:28:51 +0200
-
- Revise the Windows build files.
-
- The old Makefile + config.h was deleted, because it
- becomes outdated too easily and building with the
- Autotools based build system works fine even on Windows.
-
- windows/build.sh hasn't got much testing, but it should
- work to build 32-bit x86 and x86-64 versions of XZ Utils
- using MSYS, MinGW or MinGW-w32, and MinGW-w64.
-
- windows/INSTALL-Windows.txt describes what packages are
- needed and how to install them.
-
- windows/README-Windows.txt is a readme file for the binary
- package that build.sh hopefully builds.
-
- There are no instructions about using Autotools for now,
- so those using a git snapshot may want to run
- "autoreconf -fi && ./configure && make mydist" on a UN*X
- box and then copy the resulting .tar.gz to a Windows.
-
- windows/INSTALL-Windows.txt | 131 ++++++++++++++++++
- windows/Makefile | 320 --------------------------------------------
- windows/README | 155 ---------------------
- windows/README-Windows.txt | 115 ++++++++++++++++
- windows/build.sh | 189 ++++++++++++++++++++++++++
- windows/config.h | 170 -----------------------
- 6 files changed, 435 insertions(+), 645 deletions(-)
-
-commit 34eb5e201d62f7f46bbe6fe97cfe08cb31b3b88c
-Author: Lasse Collin
-Date: 2010-01-31 19:52:38 +0200
-
- Select the default integrity check type at runtime.
-
- Previously it was set statically to CRC64 or CRC32
- depending on options passed to the configure script.
-
- src/xz/coder.c | 19 ++++++++++++++-----
- 1 file changed, 14 insertions(+), 5 deletions(-)
-
-commit 96a4f840e3b9ca5c81e5711ff9c267b194f93ef1
-Author: Lasse Collin
-Date: 2010-01-31 18:17:50 +0200
-
- Improve displaying of the memory usage limit.
-
- src/xz/coder.c | 8 +++-----
- src/xz/message.c | 37 +++++++++++++++++++++++++++++--------
- src/xz/util.c | 7 +++++++
- src/xz/util.h | 6 ++++++
- 4 files changed, 45 insertions(+), 13 deletions(-)
-
-commit b3cc4d8edd68a0250cc69680c99b9f7343f99cf2
-Author: Lasse Collin
-Date: 2010-01-31 12:53:56 +0200
-
- Don't use uninitialized sigset_t.
-
- If signal handlers haven't been established, then it's
- useless to try to block them, especially since the sigset_t
- used for blocking hasn't been initialized yet.
-
- src/xz/signals.c | 34 ++++++++++++++++++++++++----------
- 1 file changed, 24 insertions(+), 10 deletions(-)
-
-commit 231c3c7098f1099a56abb8afece76fc9b8699f05
-Author: Lasse Collin
-Date: 2010-01-31 12:01:54 +0200
-
- Delay opening the destionation file and other fixes.
-
- The opening of the destination file is now delayed a little.
- The coder is initialized, and if decompressing, the memory
- usage of the first Block compared against the memory
- usage limit before the destination file is opened. This
- means that if --force was used, the old "target" file won't
- be deleted so easily when something goes wrong very early.
- Thanks to Mark K for the bug report.
-
- The above fix required some changes to progress message
- handling. Now there is a separate function for setting and
- printing the filename. It is used also in list.c.
-
- list_file() now handles stdin correctly (gives an error).
-
- A useless check for user_abort was removed from file_io.c.
-
- src/xz/coder.c | 64 ++++++++++++++++++++++-----------
- src/xz/file_io.c | 107 +++++++++++++++++++++++++++----------------------------
- src/xz/file_io.h | 8 +++--
- src/xz/list.c | 28 +++++----------
- src/xz/message.c | 46 +++++++++++++-----------
- src/xz/message.h | 29 ++++++++++-----
- 6 files changed, 157 insertions(+), 125 deletions(-)
-
-commit 0dbd0641db99d5e73d51d04ce7a71e52dc6b4105
-Author: Lasse Collin
-Date: 2010-01-29 22:48:04 +0200
-
- Add list.h to src/xz/Makefile.am.
-
- This should have been already in
- 0bc9eab243dee3be764b3530433a7fcdc3f7c6a1.
-
- src/xz/Makefile.am | 1 +
- 1 file changed, 1 insertion(+)
-
-commit b4b1a56e0cbd597157858264f5c7189201ac9018
-Author: Lasse Collin
-Date: 2010-01-29 13:24:27 +0200
-
- Add lzmainfo.1 to manfiles list to convert to .txt and .pdf.
-
- Makefile.am | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 5574d64e03ad3a3d6e00e4b0d3e81c7b5529ec95
-Author: Lasse Collin
-Date: 2010-01-27 16:42:11 +0200
-
- Silence two compiler warnings on DOS-like systems.
-
- src/common/tuklib_open_stdxxx.c | 6 +++++-
- src/xz/file_io.c | 3 +++
- 2 files changed, 8 insertions(+), 1 deletion(-)
-
-commit b063cc34a30a4edf109343ff373b2b62b8ca72d3
-Author: Lasse Collin
-Date: 2010-01-27 13:31:03 +0200
-
- Use PACKAGE_URL instead of custom PACKAGE_HOMEPAGE.
-
- configure.ac | 9 ++-------
- src/liblzma/liblzma.pc.in | 2 +-
- src/lzmainfo/lzmainfo.c | 2 +-
- src/xz/message.c | 2 +-
- src/xzdec/xzdec.c | 2 +-
- 5 files changed, 6 insertions(+), 11 deletions(-)
-
-commit 38b8035b5cb5f56457c5fa5a891d6900fcf5984f
-Author: Lasse Collin
-Date: 2010-01-26 23:37:46 +0200
-
- Add a missing space to an error message.
-
- Thanks to Robert Readman.
-
- src/xz/args.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit e5496f9628ff5979392a80421d0b63a4de8015b4
-Author: Lasse Collin
-Date: 2010-01-26 22:53:37 +0200
-
- Use past tense in error message in io_unlink().
-
- Added a note to translators too.
-
- Thanks to Robert Readman.
-
- THANKS | 1 +
- src/xz/file_io.c | 14 ++++++++++++--
- 2 files changed, 13 insertions(+), 2 deletions(-)
-
-commit d9a9800597ea540090e434132c3b511217df0a2b
-Author: Lasse Collin
-Date: 2010-01-26 15:42:24 +0200
-
- Fix too small static buffer in util.c.
-
- This was introduced in
- 0dd6d007669b946543ca939a44243833c79e08f4 two days ago.
-
- src/xz/util.c | 9 ++++-----
- 1 file changed, 4 insertions(+), 5 deletions(-)
-
-commit d0b4bbf5da068503c099cd456e294d7673548cc0
-Author: Lasse Collin
-Date: 2010-01-26 14:46:43 +0200
-
- Minor comment fix.
-
- src/xz/main.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit 0bc9eab243dee3be764b3530433a7fcdc3f7c6a1
-Author: Lasse Collin
-Date: 2010-01-24 23:50:54 +0200
-
- Add initial version of xz --list.
-
- This is a bit rough but should be useful for basic things.
- Ideas (with detailed examples) about the output format are
- welcome.
-
- The output of --robot --list is not necessarily stable yet,
- although I don't currently have any plans about changing it.
-
- The man page hasn't been updated yet.
-
- src/xz/Makefile.am | 1 +
- src/xz/list.c | 988 ++++++++++++++++++++++++++++++++++-------------------
- src/xz/list.h | 18 +
- src/xz/main.c | 19 +-
- src/xz/private.h | 1 +
- 5 files changed, 668 insertions(+), 359 deletions(-)
-
-commit df254ce03be016e217b511e7acd5d493f9929ca5
-Author: Lasse Collin
-Date: 2010-01-24 22:46:11 +0200
-
- Add io_pread().
-
- It will be used by --list.
-
- src/xz/file_io.c | 25 +++++++++++++++++++++++++
- src/xz/file_io.h | 17 +++++++++++++++++
- 2 files changed, 42 insertions(+)
-
-commit ef68dd4a92976276304de2aedfbe34ae91a86abb
-Author: Lasse Collin
-Date: 2010-01-24 22:45:14 +0200
-
- Set LC_NUMERIC=C when --robot is used.
-
- It is to ensure that floating point numbers
- will always have a dot as the decimal separator.
-
- src/xz/args.c | 4 ++++
- 1 file changed, 4 insertions(+)
-
-commit 0dd6d007669b946543ca939a44243833c79e08f4
-Author: Lasse Collin
-Date: 2010-01-24 16:57:40 +0200
-
- Some improvements to printing sizes in xz.
-
- src/xz/coder.c | 56 +++++++++++++++------------------------
- src/xz/message.c | 80 ++++++++++++++++++--------------------------------------
- src/xz/message.h | 4 +++
- src/xz/util.c | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++
- src/xz/util.h | 44 +++++++++++++++++++++++++++++++
- 5 files changed, 166 insertions(+), 90 deletions(-)
-
-commit 2a98fdffd68c66371279c211c29153c808ad5c1d
-Author: Lasse Collin
-Date: 2010-01-20 22:02:35 +0200
-
- Fix a typo in README.
-
- Thanks to R. Bijker.
-
- README | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 07a11dad44e041b01dcfc73e8d4e00731158c06d
-Author: Lasse Collin
-Date: 2010-01-17 11:59:54 +0200
-
- Updated windows/Makefile.
-
- Thanks to Dan Shechter for the patch.
-
- It is likely that windows/Makefile will be removed
- completely, because Autotols based build nowadays
- works well with both 32-bit and 64-bit MinGW (I
- just need to update the docs).
-
- windows/Makefile | 38 +++++++++++++++++++++++++-------------
- windows/config.h | 2 ++
- 2 files changed, 27 insertions(+), 13 deletions(-)
-
-commit 37f31ead9d2b4e467df11450cf29ed7d7e3e25f3
-Author: Lasse Collin
-Date: 2010-01-15 11:05:11 +0200
-
- Update the xz man page to match the previous two commits.
-
- src/xz/xz.1 | 9 +++------
- 1 file changed, 3 insertions(+), 6 deletions(-)
-
-commit 3ffd5d81a43210c8da56da5c5b3637d3f8bc63c7
-Author: Lasse Collin
-Date: 2010-01-13 19:10:25 +0200
-
- Don't read compressed data from a terminal or write it
- to a terminal even if --force is specified.
-
- It just seems more reasonable this way.
-
- The new behavior matches bzip2. The old one matched gzip.
-
- src/xz/main.c | 20 +++++++++-----------
- src/xz/util.c | 8 ++++----
- 2 files changed, 13 insertions(+), 15 deletions(-)
-
-commit 23ac2c44c3ac76994825adb7f9a8f719f78b5ee4
-Author: Lasse Collin
-Date: 2010-01-13 18:12:40 +0200
-
- Don't compress or decompress special files unless writing
- to stdout even if --force is used.
-
- --force will still enable compression of symlinks, but only
- in case they point to a regular file.
-
- The new way simply seems more reasonable. It matches gzip's
- behavior while the old one matched bzip2's behavior.
-
- src/xz/file_io.c | 15 ++++++++++-----
- 1 file changed, 10 insertions(+), 5 deletions(-)
-
-commit cee12aa852ec0902983dc1f153346ef750157fb9
-Author: Lasse Collin
-Date: 2010-01-12 16:30:33 +0200
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 153c7740c54b3c90129dbd3d6153ac1303c4d605
-Author: Lasse Collin
-Date: 2010-01-12 16:18:14 +0200
-
- Add IRIX-specific code to tuklib_physmem and tuklib_cpucores.
-
- This is untested but it will get tested soon and, if needed,
- fixed before 5.0.0.
-
- Thanks to Stuart Shelton.
-
- m4/tuklib_cpucores.m4 | 11 +++++++++--
- m4/tuklib_physmem.m4 | 22 +++++++++++++++++++++-
- src/common/tuklib_cpucores.c | 6 ++++++
- src/common/tuklib_physmem.c | 19 +++++++++++++++++++
- 4 files changed, 55 insertions(+), 3 deletions(-)
-
-commit 8ea8dc754a7a5bc2d60db1eac201839cabdab6a1
-Author: Lasse Collin
-Date: 2010-01-01 00:29:10 +0200
-
- Fix _memconfig() functions.
-
- This affects lzma_memusage() and lzma_memlimit_get().
-
- src/liblzma/api/lzma/index.h | 7 -------
- src/liblzma/common/alone_decoder.c | 11 +++++++----
- src/liblzma/common/index_decoder.c | 10 ++++++----
- src/liblzma/common/stream_decoder.c | 11 +++++++----
- 4 files changed, 20 insertions(+), 19 deletions(-)
-
-commit 1a7ec87c8ee61dfc2e496d2e1fb7ab0939804691
-Author: Lasse Collin
-Date: 2009-12-31 22:45:53 +0200
-
- Revised the Index handling code.
-
- This breaks API and ABI but most apps are not affected
- since most apps don't use this part of the API. You will
- get a compile error if you are using anything that got
- broken.
-
- Summary of changes:
-
- - Ability to store Stream Flags, which are needed
- for random-access reading in multi-Stream files.
-
- - Separate function to set size of Stream Padding.
-
- - Iterator structure makes it possible to read the same
- lzma_index from multiple threads at the same time.
-
- - A lot faster code to locate Blocks.
-
- - Removed lzma_index_equal() without adding anything
- to replace it. I don't know what it should do exactly
- with the new features and what actually needs this
- function in the first place other than test_index.c,
- which now has its own code to compare lzma_indexes.
-
- src/liblzma/api/lzma/index.h | 572 +++++++---
- src/liblzma/common/index.c | 1553 ++++++++++++++++++----------
- src/liblzma/common/index.h | 6 +
- src/liblzma/common/index_decoder.c | 12 +-
- src/liblzma/common/index_encoder.c | 36 +-
- src/liblzma/common/index_encoder.h | 2 +-
- src/liblzma/common/stream_buffer_encoder.c | 6 +-
- src/liblzma/common/stream_encoder.c | 3 +-
- tests/test_index.c | 371 ++++---
- 9 files changed, 1703 insertions(+), 858 deletions(-)
-
-commit f29997a846e673cb3b8cbd57de47ed313b3978bb
-Author: Lasse Collin
-Date: 2009-12-31 21:13:25 +0200
-
- Remove c-format tag in cs.po.
-
- It was fixed in the C code earlier.
-
- po/cs.po | 1 -
- 1 file changed, 1 deletion(-)
-
-commit 097bad000363e0bf29f8274ad2d7ab59f7dbf644
-Author: Lasse Collin
-Date: 2009-12-31 21:11:05 +0200
-
- Add missing lzma_nothrow in filter.h.
-
- src/liblzma/api/lzma/filter.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit b56cb1fc31fa2381f92eefc040df85667048d626
-Author: Lasse Collin
-Date: 2009-12-09 18:13:44 +0200
-
- Remove redefinition of _(msgid) macro from lzmainfo.c.
-
- src/lzmainfo/lzmainfo.c | 7 -------
- 1 file changed, 7 deletions(-)
-
-commit 171b03febfe09d9fae6ac8be6aa4518bcaf427d2
-Author: Jonathan Nieder
-Date: 2009-12-08 19:41:57 -0600
-
- update po/.gitignore
-
- Since the *.gmo files are deleted by the maintainer-clean target,
- I assume they are not meant to be tracked.
-
- Also add the other files listed in the Makefile’s clean targets
- (stamp-poT, xz.po, xz.[12].po, *.new.po, xz.mo) to make sure they
- are not accidentally tracked. Most of these are intermediate
- files that would not appear unless a build is interrupted or
- fails.
-
- Split the list of untracked files by origin to make it easier to
- tell if files are missing in the future.
-
- Signed-off-by: Jonathan Nieder
-
- po/.gitignore | 28 ++++++++++++++++++++++------
- 1 file changed, 22 insertions(+), 6 deletions(-)
-
-commit f7e44c6c11f630519072971b8b07a5729c096c36
-Author: Lasse Collin
-Date: 2009-12-09 00:38:55 +0200
-
- Always rely on GCC's auto-import on Windows.
-
- I understood that this is nicer, because then people
- don't need to worry about the LZMA_API_STATIC macro.
-
- Thanks to Charles Wilson and Keith Marshall.
-
- src/liblzma/api/lzma.h | 16 +++++++++-------
- 1 file changed, 9 insertions(+), 7 deletions(-)
-
-commit 7b76a3e2336f25088957cba92b0dbd854d9caa3c
-Author: Lasse Collin
-Date: 2009-12-07 21:46:53 +0200
-
- Fix file_io.c on DOS-like systems.
-
- The problem was introduced when adding sparse file
- support in 465d1b0d6518c5d980f2db4c2d769f9905bdd902.
-
- Thanks to Charles Wilson.
-
- src/xz/file_io.c | 4 ++++
- 1 file changed, 4 insertions(+)
-
-commit 0696f5d268362221380e039bad48a86e29067c6a
-Author: Lasse Collin
-Date: 2009-12-07 20:54:21 +0200
-
- Add Czech translation.
-
- Thanks to Marek Černocký.
-
- Other people planning to translate xz: Note that the
- messages are a little bit in flux still. Translations
- are still welcome, just be prepared to some extra work
- in case there are changes.
-
- THANKS | 1 +
- po/LINGUAS | 1 +
- po/cs.po | 637 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- 3 files changed, 639 insertions(+)
-
-commit 5e817a50d276f0a3607638c1c1d449d50b9aa4e5
-Author: Lasse Collin
-Date: 2009-12-07 20:32:08 +0200
-
- Add a note for translators to add a bug reporting address
- for translation bugs.
-
- src/xz/message.c | 4 ++++
- 1 file changed, 4 insertions(+)
-
-commit 6db1c35be9e1e364cdacff6878910e1b7aac2a37
-Author: Lasse Collin
-Date: 2009-12-07 20:07:02 +0200
-
- Prevent xgettext from taking one regular string as a C format string.
-
- Thanks to Marek Černocký.
-
- src/xz/message.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit e0c2776b6ffbd2b1900fde353aceac734edc93d7
-Author: Lasse Collin
-Date: 2009-11-28 17:45:22 +0200
-
- Remove duplicate code in io_open_dest().
-
- Fix a missing _() in the error message too.
-
- src/xz/file_io.c | 9 +--------
- 1 file changed, 1 insertion(+), 8 deletions(-)
-
-commit f057a33c6f7c5992389479f2d4feabf2900ba7ee
-Author: Lasse Collin
-Date: 2009-11-26 10:11:23 +0200
-
- Typo fix to sysdefs.h.
-
- Thanks to Jonathan Nieder.
-
- src/common/sysdefs.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 8767b41534eafdf5e742e12190646bf5740b0cdb
-Author: Lasse Collin
-Date: 2009-11-26 10:10:36 +0200
-
- Fix a memory leak in test_index.c.
-
- This was introduced in
- bd13b04e202b6f495a68eb0766f97085b7c50a06.
-
- Thanks to Jim Meyering for noticing it.
-
- tests/test_index.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-commit 919fbaff860acdaa4bcd216500a0b1c960a6db92
-Author: Lasse Collin
-Date: 2009-11-25 14:22:19 +0200
-
- Add missing error check to coder.c.
-
- With bad luck this could cause a segfault due to
- reading (but not writing) past the end of the buffer.
-
- src/xz/coder.c | 20 +++++++++++---------
- 1 file changed, 11 insertions(+), 9 deletions(-)
-
-commit bd13b04e202b6f495a68eb0766f97085b7c50a06
-Author: Lasse Collin
-Date: 2009-11-25 13:04:10 +0200
-
- Fix bugs in lzma_index_read() and lzma_index_cat().
-
- lzma_index_read() didn't skip over Stream Padding
- if it was the first record in the Index.
-
- lzma_index_cat() didn't combine small Indexes correctly.
-
- The test suite was updated to check for these bugs.
-
- These bugs didn't affect the xz command line tool or
- most users of liblzma in any way.
-
- src/liblzma/common/index.c | 30 +++++++++++++++++++-----------
- tests/test_index.c | 28 +++++++++++++++++++++++++---
- 2 files changed, 44 insertions(+), 14 deletions(-)
-
-commit 1f196909143b888e062bd9a0c4ba8c34d3019bfa
-Author: Lasse Collin
-Date: 2009-11-25 12:52:56 +0200
-
- Index decoder fixes.
-
- The Index decoder code didn't perfectly match the API docs,
- which said that *i will be set to point to the decoded Index
- only after decoding has succeeded. The docs were a bit unclear
- too.
-
- Now the decoder will initially set *i to NULL. *i will be set
- to point to the decoded Index once decoding has succeeded.
- This simplifies applications too, since it avoids dangling
- pointers.
-
- src/liblzma/api/lzma/index.h | 23 ++++++++++++-----------
- src/liblzma/common/index_decoder.c | 26 ++++++++++++++++++++------
- 2 files changed, 32 insertions(+), 17 deletions(-)
-
-commit 465d1b0d6518c5d980f2db4c2d769f9905bdd902
-Author: Lasse Collin
-Date: 2009-11-25 11:19:20 +0200
-
- Create sparse files by default when decompressing into
- a regular file.
-
- Sparse file creation can be disabled with --no-sparse.
- I don't promise yet that the name of this option won't
- change before 5.0.0. It's possible that the code, that
- checks when it is safe to use sparse output on stdout,
- is not good enough, and a more flexible command line
- option is needed to configure sparse file handling.
-
- src/xz/args.c | 6 ++
- src/xz/coder.c | 33 ++++----
- src/xz/file_io.c | 243 +++++++++++++++++++++++++++++++++++++++++++++++--------
- src/xz/file_io.h | 34 ++++++--
- src/xz/message.c | 1 +
- src/xz/xz.1 | 11 +++
- 6 files changed, 272 insertions(+), 56 deletions(-)
-
-commit 37de544414fc2dc5039471d1002ebd015eb3e627
-Author: Lasse Collin
-Date: 2009-11-22 12:43:06 +0200
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit f1a28b96c900c658fe016852ff62f6c24d1f50fa
-Author: Lasse Collin
-Date: 2009-11-22 12:05:33 +0200
-
- Add missing consts to pointer casts.
-
- src/liblzma/check/crc32_fast.c | 4 ++--
- src/liblzma/check/crc64_fast.c | 5 +++--
- 2 files changed, 5 insertions(+), 4 deletions(-)
-
-commit b9b5c54cd438b3ae47b44cc211b71f3bc53e35ef
-Author: Lasse Collin
-Date: 2009-11-22 12:00:30 +0200
-
- Enable assembler code only if it is known to work
- on that operating system.
-
- I'm too lazy to think how to make a good Autoconf test
- for this and it's not that important anyway.
-
- No longer define HAVE_ASM_X86 or HAVE_ASM_X86_64.
- Inline assembler (if any) is used if a macro like
- __i386__ or __x86_64__ is defined.
-
- configure.ac | 26 ++++++++++++--------------
- 1 file changed, 12 insertions(+), 14 deletions(-)
-
-commit 0733f4c9994db696420a405810d5f02c79ebc404
-Author: Lasse Collin
-Date: 2009-11-22 11:55:03 +0200
-
- Make fastpos.h use tuklib_integer.h instead of bsr.h
- when --enable-small has been specified.
-
- src/liblzma/common/Makefile.inc | 1 -
- src/liblzma/common/bsr.h | 60 -----------------------------------------
- src/liblzma/lzma/fastpos.h | 5 +---
- 3 files changed, 1 insertion(+), 65 deletions(-)
-
-commit 7ac3985d891dcc5773543f84cc5bce6c14841b12
-Author: Lasse Collin
-Date: 2009-11-22 11:52:30 +0200
-
- Update tuklib_integer.h with bit scan functions.
-
- Thanks to Joachim Henke for the original patch.
-
- src/common/tuklib_integer.h | 189 ++++++++++++++++++++++++++++++++++++++++++--
- 1 file changed, 181 insertions(+), 8 deletions(-)
-
-commit c74c132f7f79a842c073c66575a4fdb985e4c2e3
-Author: Lasse Collin
-Date: 2009-11-20 12:51:19 +0200
-
- Update tuklib_cpucores.m4 and tuklib_physmem.m4 from tuklib,
- which now use AC_CACHE_CHECK. Using the cache variable,
- configure now warns if there is no method to detect the amount
- of RAM and recommends using --enable-assume-ram.
-
- configure.ac | 16 ++++++++++++++++
- m4/tuklib_cpucores.m4 | 31 ++++++++++++++++++-------------
- m4/tuklib_physmem.m4 | 50 +++++++++++++++++++++++++++-----------------------
- 3 files changed, 61 insertions(+), 36 deletions(-)
-
-commit d315ca4930ff96e1428c6021c96f209e1abdd83e
-Author: Lasse Collin
-Date: 2009-11-16 18:16:45 +0200
-
- Add support for --info-memory and --robot to xz.
-
- Currently --robot works only with --info-memory and
- --version. --help and --long-help work too, but --robot
- has no effect on them.
-
- Thanks to Jonathan Nieder for the original patches.
-
- src/xz/args.c | 85 +++++++++++++++++++++++++++++++++-----------------------
- src/xz/args.h | 1 +
- src/xz/main.c | 11 +++++---
- src/xz/message.c | 47 +++++++++++++++++++++++--------
- src/xz/message.h | 4 +++
- src/xz/xz.1 | 40 +++++++++++++++++++++++---
- 6 files changed, 133 insertions(+), 55 deletions(-)
-
-commit e330fb7e6b8162894280c8a3dc22fdc05cd2d85e
-Author: Lasse Collin
-Date: 2009-11-15 12:54:45 +0200
-
- Fix wrong indentation caused by incorrect settings
- in the text editor.
-
- src/liblzma/lz/lz_decoder.c | 18 +++++++++---------
- src/liblzma/lzma/lzma2_encoder.c | 6 +++---
- src/liblzma/lzma/lzma_encoder_optimum_normal.c | 2 +-
- 3 files changed, 13 insertions(+), 13 deletions(-)
-
-commit 93e418562cf127a9171e87bcd4e9af8e1bfcdae4
-Author: Lasse Collin
-Date: 2009-11-15 12:40:17 +0200
-
- Add lzma_physmem().
-
- I had hoped to keep liblzma as purely a compression
- library as possible (e.g. file I/O will go into
- a different library), but it seems that applications
- linking agaisnt liblzma need some way to determine
- the memory usage limit, and knowing the amount of RAM
- is one reasonable way to help making such decisions.
-
- Thanks to Jonathan Nieder for the original patch.
-
- src/liblzma/Makefile.am | 5 ++--
- src/liblzma/api/Makefile.am | 1 +
- src/liblzma/api/lzma.h | 3 +++
- src/liblzma/api/lzma/hardware.h | 51 +++++++++++++++++++++++++++++++++++
- src/liblzma/common/Makefile.inc | 1 +
- src/liblzma/common/hardware_physmem.c | 25 +++++++++++++++++
- src/xz/Makefile.am | 1 -
- src/xz/hardware.c | 3 +--
- src/xzdec/Makefile.am | 6 ++---
- src/xzdec/xzdec.c | 3 +--
- 10 files changed, 88 insertions(+), 11 deletions(-)
-
-commit cf39faca59083d38422058c6c97aa757ea7797d0
-Author: Lasse Collin
-Date: 2009-11-14 20:21:19 +0200
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 2ddcae247c284cc2f396b6cfdab57790c7588b5f
-Author: Lasse Collin
-Date: 2009-11-14 20:20:03 +0200
-
- Some updates to xz man page.
-
- src/xz/xz.1 | 54 +++++++++++++++++++++++++++++++++++++++++++++++++-----
- 1 file changed, 49 insertions(+), 5 deletions(-)
-
-commit 19b2674f07f8b588dfaf6638396b4b42866d7e23
-Author: Lasse Collin
-Date: 2009-11-14 19:51:03 +0200
-
- Fix description of --memory in --long-help.
-
- src/xz/message.c | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-commit 2291346f0cccf88e605d84b75c9c5aaaaddb5df8
-Author: Lasse Collin
-Date: 2009-11-14 19:45:39 +0200
-
- Update the debug programs so that they compile again.
-
- debug/crc32.c | 1 +
- debug/memusage.c | 6 ++++--
- debug/sync_flush.c | 14 +++++++++-----
- 3 files changed, 14 insertions(+), 7 deletions(-)
-
-commit 418d64a32e8144210f98a810738fed5a897e8367
-Author: Lasse Collin
-Date: 2009-11-14 18:59:19 +0200
-
- Fix a design error in liblzma API.
-
- Originally the idea was that using LZMA_FULL_FLUSH
- with Stream encoder would read the filter chain
- from the same array that was used to intialize the
- Stream encoder. Since most apps wouldn't use
- LZMA_FULL_FLUSH, most apps wouldn't need to keep
- the filter chain available after initializing the
- Stream encoder. However, due to my mistake, it
- actually required keeping the array always available.
-
- Since setting the new filter chain via the array
- used at initialization time is not a nice way to do
- it for a couple of reasons, this commit ditches it
- and introduces lzma_filters_update(). This new function
- replaces also the "persistent" flag used by LZMA2
- (and to-be-designed Subblock filter), which was also
- an ugly thing to do.
-
- Thanks to Alexey Tourbin for reminding me about the problem
- that Stream encoder used to require keeping the filter
- chain allocated.
-
- src/liblzma/api/lzma/filter.h | 30 +++++++++++++
- src/liblzma/api/lzma/lzma.h | 13 ------
- src/liblzma/common/block_encoder.c | 14 ++++++
- src/liblzma/common/common.c | 20 ++++++++-
- src/liblzma/common/common.h | 22 ++++++++++
- src/liblzma/common/easy_encoder.c | 63 ++-------------------------
- src/liblzma/common/filter_common.c | 3 ++
- src/liblzma/common/filter_encoder.c | 27 ++++++++++++
- src/liblzma/common/filter_encoder.h | 2 +-
- src/liblzma/common/stream_encoder.c | 76 ++++++++++++++++++++++++++++-----
- src/liblzma/delta/delta_common.c | 5 +--
- src/liblzma/delta/delta_decoder.c | 3 +-
- src/liblzma/delta/delta_encoder.c | 17 +++++++-
- src/liblzma/delta/delta_private.h | 2 +-
- src/liblzma/lz/lz_encoder.c | 17 ++++++++
- src/liblzma/lz/lz_encoder.h | 4 ++
- src/liblzma/lzma/lzma2_encoder.c | 59 ++++++++++++++-----------
- src/liblzma/lzma/lzma_encoder_presets.c | 1 -
- src/liblzma/simple/simple_coder.c | 12 ++++++
- src/xz/options.c | 1 -
- 20 files changed, 273 insertions(+), 118 deletions(-)
-
-commit f0bf7634b77263a4dd02b20c71861ab67995da68
-Author: Lasse Collin
-Date: 2009-10-17 11:11:58 +0300
-
- Fix wrong function name in the previous commit.
-
- It was meant to be lzma_filters_copy(), not lzma_filters_dup().
-
- src/liblzma/api/lzma/filter.h | 2 +-
- src/liblzma/common/filter_common.c | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-commit 6d118a0b9def82e96afba7386ec8d7da0b59649f
-Author: Lasse Collin
-Date: 2009-10-17 01:47:07 +0300
-
- Add lzma_filters_copy().
-
- This will be needed internally by liblzma once I fix
- a design mistake in the encoder API. This function may
- be useful to applications too so it's good to export it.
-
- src/liblzma/api/lzma/filter.h | 31 ++++++++++++++
- src/liblzma/common/filter_common.c | 82 ++++++++++++++++++++++++++++++++++++++
- 2 files changed, 113 insertions(+)
-
-commit 78e92c18470483e161388e679c1ee556adb3a691
-Author: Jonathan Nieder
-Date: 2009-10-15 20:44:13 -0500
-
- Escape dashes in xzmore.1
-
- A minus sign is larger, easier to see in a printout, and more
- likely to use the same glyph as ASCII hyphen-minus in a terminal
- than a hyphen. Since broken manual pagers do not find hyphens
- when the user searches for a hyphen-minus, minus signs are also
- easier to search for. So use minus signs instead of hyphens to
- render sample terminal output.
-
- src/scripts/xzmore.1 | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit 7b7fe902d98da28e5769e2aa1e0c08c92384f7ee
-Author: Lasse Collin
-Date: 2009-10-16 20:35:39 +0300
-
- Mention --check=none in --long-help. It was already in
- the man page though.
-
- Thanks to Jim Meyering for noticing this.
-
- src/xz/message.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit ebfb2c5e1f344e5c6e549b9dedaa49b0749a4a24
-Author: Lasse Collin
-Date: 2009-10-04 22:57:12 +0300
-
- Use a tuklib module for integer handling.
-
- This replaces bswap.h and integer.h.
-
- The tuklib module uses on GNU,
- on *BSDs and
- on Solaris, which may contain optimized code
- like inline assembly.
-
- configure.ac | 54 +----
- m4/tuklib_integer.m4 | 74 +++++++
- src/common/bswap.h | 52 -----
- src/common/integer.h | 170 ---------------
- src/common/tuklib_config.h | 8 +-
- src/common/tuklib_integer.h | 350 ++++++++++++++++++++++++++++++
- src/liblzma/check/check.c | 4 +-
- src/liblzma/check/crc32_fast.c | 4 +-
- src/liblzma/check/crc32_tablegen.c | 8 +-
- src/liblzma/check/crc64_fast.c | 4 +-
- src/liblzma/check/crc64_tablegen.c | 8 +-
- src/liblzma/check/crc_macros.h | 2 -
- src/liblzma/check/sha256.c | 18 +-
- src/liblzma/common/alone_encoder.c | 2 +-
- src/liblzma/common/block_header_decoder.c | 2 +-
- src/liblzma/common/block_header_encoder.c | 2 +-
- src/liblzma/common/common.h | 2 +-
- src/liblzma/common/stream_flags_decoder.c | 6 +-
- src/liblzma/common/stream_flags_encoder.c | 6 +-
- src/liblzma/lz/lz_encoder_hash.h | 2 +-
- src/liblzma/lzma/lzma_decoder.c | 2 +-
- src/liblzma/lzma/lzma_encoder.c | 2 +-
- src/liblzma/lzma/lzma_encoder_private.h | 2 +-
- src/liblzma/simple/simple_decoder.c | 2 +-
- src/liblzma/simple/simple_encoder.c | 2 +-
- tests/test_block_header.c | 4 +-
- tests/test_stream_flags.c | 6 +-
- tests/tests.h | 2 +-
- 28 files changed, 467 insertions(+), 333 deletions(-)
-
-commit 29fd321033276261b87da7be5223db33d879a4c7
-Author: Lasse Collin
-Date: 2009-10-02 14:35:56 +0300
-
- Add support for --enable-assume-ram=SIZE.
-
- INSTALL | 16 ++++++++++++++++
- configure.ac | 24 ++++++++++++++++++++++++
- src/xz/hardware.c | 7 +++----
- src/xzdec/xzdec.c | 5 +++--
- 4 files changed, 46 insertions(+), 6 deletions(-)
-
-commit 3782b3fee4812b0dd4ffdfa6563ed49f73060f25
-Author: Lasse Collin
-Date: 2009-10-02 11:28:17 +0300
-
- Use unaligned access (if possible) on both endiannesses
- in lz_encoder_hash.h.
-
- src/liblzma/lz/lz_encoder_hash.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit c5f68b5cc79085a87f950fea53843e27f328068e
-Author: Lasse Collin
-Date: 2009-10-02 11:03:26 +0300
-
- Make liblzma produce the same output on both endiannesses.
-
- Seems that it is a problem in some cases if the same
- version of XZ Utils produces different output on different
- endiannesses, so this commit fixes that problem. The output
- will still vary between different XZ Utils versions, but I
- cannot avoid that for now.
-
- This commit bloatens the code on big endian systems by 1 KiB,
- which should be OK since liblzma is bloated already. ;-)
-
- src/liblzma/check/crc32_tablegen.c | 30 +++++++++++++++
- src/liblzma/lz/Makefile.inc | 1 +
- src/liblzma/lz/lz_encoder.c | 7 +++-
- src/liblzma/lz/lz_encoder_hash.h | 35 +++++++++++------
- src/liblzma/lz/lz_encoder_hash_table.h | 68 ++++++++++++++++++++++++++++++++++
- src/liblzma/lz/lz_encoder_mf.c | 1 -
- 6 files changed, 128 insertions(+), 14 deletions(-)
-
-commit 4a84d1adfda35e4fb4d41ecf0feb8223b100517a
-Author: Mike Frysinger
-Date: 2009-09-26 12:51:50 -0400
-
- add lzmainfo to gitignore
-
- Signed-off-by: Mike Frysinger
-
- .gitignore | 2 ++
- 1 file changed, 2 insertions(+)
-
-commit 188a1dcd0cc7867810ed3a55c598d0680922c63b
-Author: Lasse Collin
-Date: 2009-09-27 11:53:36 +0300
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit db9119b9181b307e7ac5d2bae82444d04b902b59
-Author: Lasse Collin
-Date: 2009-09-27 11:48:54 +0300
-
- Work around a bug in Interix header files.
-
- Thanks to Markus Duft for the patch.
-
- src/common/sysdefs.h | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-commit b3d105e69786a45963176fd2193abe75e05ba738
-Author: Lasse Collin
-Date: 2009-09-24 17:50:17 +0300
-
- Fix an error in OpenVMS-specific code.
-
- Thanks to Jouk Jansen.
-
- src/xz/file_io.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 5e000ff00d4d01e559397b49eb648ad3f159d496
-Author: Lasse Collin
-Date: 2009-09-22 18:59:56 +0300
-
- Added OpenVMS-specific information to INSTALL.
-
- INSTALL | 11 +++++++++++
- 1 file changed, 11 insertions(+)
-
-commit 932b2e204463d70f3eee5b8a1ea5a23bf9d001a4
-Author: Lasse Collin
-Date: 2009-09-22 14:03:02 +0300
-
- Better fixes for OpenVMS support.
-
- Thanks to Jouk Jansen.
-
- src/xz/file_io.c | 19 ++++++++++++++++---
- 1 file changed, 16 insertions(+), 3 deletions(-)
-
-commit 4c3630ec4179fe9265407a35c4db1374ffc82372
-Author: Lasse Collin
-Date: 2009-09-22 13:40:19 +0300
-
- Avoid non-standard preprocessor construct.
-
- Thanks to Jouk Jansen.
-
- src/common/tuklib_common.h | 11 +++++++----
- 1 file changed, 7 insertions(+), 4 deletions(-)
-
-commit 0deb1bb60addd1306b525e0ac0ad2a84eb0390d9
-Author: Lasse Collin
-Date: 2009-09-21 19:50:09 +0300
-
- Make sure that TUKLIB_DOSLIKE doesn't get defined on Cygwin.
-
- Thanks to Charles Wilson.
-
- src/common/tuklib_common.h | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-commit e599bba4216c0edb8cc8f40adad3a6dba88685f4
-Author: Lasse Collin
-Date: 2009-09-19 09:47:30 +0300
-
- Various changes.
-
- Separate a few reusable components from XZ Utils specific
- code. The reusable code is now in "tuklib" modules. A few
- more could be separated still, e.g. bswap.h.
-
- Fix some bugs in lzmainfo.
-
- Fix physmem and cpucores code on OS/2. Thanks to Elbert Pol
- for help.
-
- Add OpenVMS support into physmem. Add a few #ifdefs to ease
- building XZ Utils on OpenVMS. Thanks to Jouk Jansen for the
- original patch.
-
- THANKS | 1 +
- configure.ac | 12 +--
- m4/lc_physmem.m4 | 84 ---------------
- m4/tuklib_common.m4 | 22 ++++
- m4/{lc_cpucores.m4 => tuklib_cpucores.m4} | 83 ++++++++------
- m4/tuklib_physmem.m4 | 119 +++++++++++++++++++++
- m4/tuklib_progname.m4 | 25 +++++
- src/common/sysdefs.h | 4 -
- src/common/tuklib_common.h | 67 ++++++++++++
- src/common/tuklib_config.h | 1 +
- src/common/{cpucores.h => tuklib_cpucores.c} | 39 +++----
- src/common/tuklib_cpucores.h | 23 ++++
- src/common/tuklib_exit.c | 57 ++++++++++
- src/common/tuklib_exit.h | 25 +++++
- src/common/tuklib_gettext.h | 44 ++++++++
- src/common/{open_stdxxx.h => tuklib_open_stdxxx.c} | 24 +++--
- src/common/tuklib_open_stdxxx.h | 23 ++++
- src/common/{physmem.h => tuklib_physmem.c} | 58 +++++-----
- src/common/tuklib_physmem.h | 28 +++++
- src/common/tuklib_progname.c | 50 +++++++++
- src/common/tuklib_progname.h | 32 ++++++
- src/lzmainfo/Makefile.am | 5 +-
- src/lzmainfo/lzmainfo.c | 65 ++++-------
- src/xz/Makefile.am | 7 +-
- src/xz/args.c | 8 +-
- src/xz/file_io.c | 43 ++++----
- src/xz/hardware.c | 8 +-
- src/xz/main.c | 100 ++++-------------
- src/xz/main.h | 7 --
- src/xz/message.c | 30 +++---
- src/xz/message.h | 8 +-
- src/xz/private.h | 11 +-
- src/xz/signals.c | 2 +
- src/xz/signals.h | 17 ++-
- src/xz/suffix.c | 2 +-
- src/xzdec/Makefile.am | 13 ++-
- src/xzdec/xzdec.c | 55 +++-------
- 37 files changed, 768 insertions(+), 434 deletions(-)
-
-commit 49cfc8d392cf535f8dd10233225b1fc726fec9ef
-Author: Lasse Collin
-Date: 2009-09-15 21:07:23 +0300
-
- Fix incorrect use of "restrict".
-
- src/liblzma/api/lzma/vli.h | 4 ++--
- src/liblzma/common/vli_decoder.c | 2 +-
- src/liblzma/common/vli_encoder.c | 2 +-
- 3 files changed, 4 insertions(+), 4 deletions(-)
-
-commit 15ffd675ab7af84592eb1c23b0e9f4699aa0fd8c
-Author: Lasse Collin
-Date: 2009-09-12 14:09:17 +0300
-
- Fix GCC version check for nothrow attribute.
-
- src/liblzma/api/lzma.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit 6bfdd3a88a819f04c8f202e7d3c6f88a01c7d224
-Author: Lasse Collin
-Date: 2009-09-12 14:08:15 +0300
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 4ab7b16b9573bdfa32279e4adadff684d5cd58ac
-Author: Lasse Collin
-Date: 2009-09-12 14:07:36 +0300
-
- A few grammar fixes.
-
- Thanks to Christian Weisgerber for pointing out some of these.
-
- src/liblzma/api/lzma.h | 4 ++--
- src/liblzma/api/lzma/vli.h | 4 ++--
- src/liblzma/common/block_header_encoder.c | 2 +-
- src/liblzma/common/filter_common.c | 2 +-
- src/liblzma/lz/lz_encoder.h | 10 +++++-----
- src/xz/message.c | 22 +++++++++++-----------
- src/xzdec/xzdec.c | 2 +-
- 7 files changed, 23 insertions(+), 23 deletions(-)
-
-commit 8905a33daadcd2d6557c83c81c490b827d566c94
-Author: Lasse Collin
-Date: 2009-09-11 17:08:15 +0300
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 68059334ff435300ab1ce2c616b0eee1b0d88dd9
-Author: Lasse Collin
-Date: 2009-09-11 17:06:32 +0300
-
- Add PACKAGE_HOMEPAGE to {windows,dos}/config.h to fix build errors.
-
- dos/config.h | 3 +++
- windows/config.h | 3 +++
- 2 files changed, 6 insertions(+)
-
-commit 221be761f467da76875247bc02d7a1716682075d
-Author: Lasse Collin
-Date: 2009-09-11 10:24:09 +0300
-
- Use $(LN_EXEEXT) in symlinks to executables.
-
- This fixes "make install" on operating systems using
- a suffix for executables.
-
- Cygwin is treated specially. The symlink names won't have
- .exe suffix even though the executables themselves have.
- Thanks to Charles Wilson.
-
- configure.ac | 9 +++++++++
- src/xz/Makefile.am | 4 ++--
- 2 files changed, 11 insertions(+), 2 deletions(-)
-
-commit 18a4233a53d9b82abac7db7d7804684c5fea9c2c
-Author: Lasse Collin
-Date: 2009-09-11 09:25:09 +0300
-
- Fix a couple of warnings.
-
- src/liblzma/common/stream_decoder.c | 2 +-
- src/liblzma/lz/lz_encoder.c | 5 +----
- src/liblzma/lzma/lzma_encoder.c | 2 +-
- src/liblzma/lzma/lzma_encoder_optimum_normal.c | 8 ++++----
- tests/tests.h | 2 +-
- 5 files changed, 8 insertions(+), 11 deletions(-)
-
-commit 429910b2ba67611d8df60d1a9da9641bdb5f82b4
-Author: Lasse Collin
-Date: 2009-09-05 18:39:21 +0300
-
- Add OS/2-specific code to physmem.h.
-
- Also move DJGPP-specific code near the code meant
- for other DOS-like systems.
-
- src/common/physmem.h | 32 +++++++++++++++++++++-----------
- 1 file changed, 21 insertions(+), 11 deletions(-)
-
-commit 7aca7b3174bcbba4a4915682ff0cd405d63f5740
-Author: Lasse Collin
-Date: 2009-09-05 01:21:15 +0300
-
- Updated THANKS.
-
- THANKS | 2 ++
- 1 file changed, 2 insertions(+)
-
-commit 60ccb80c9c4a0d771acc5b7d9d6f32b17fed1071
-Author: Lasse Collin
-Date: 2009-09-05 01:20:29 +0300
-
- Use sysctl() != -1 instead of !sysctl() to check if
- the function call succeeded.
-
- NetBSD 4.0 returns positive values on success, but
- NetBSD Current and FreeBSD return zero. OpenBSD's
- man page doesn't tell what sysctl() returns on
- success. All these BSDs return -1 on error.
-
- Thanks to Robert Elz and Thomas Klausner.
-
- src/common/cpucores.h | 2 +-
- src/common/physmem.h | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-commit 173368911cf09ab0b03fc4db8f3d4b81d86dce32
-Author: Lasse Collin
-Date: 2009-09-02 09:43:51 +0300
-
- Mention in INSTALL that --enable-small doesn't modify CFLAGS.
-
- INSTALL | 4 ++++
- 1 file changed, 4 insertions(+)
-
-commit 319a0fd7d7e9ebbb71ca6930abfc20777cb4aacc
-Author: Lasse Collin
-Date: 2009-09-01 20:40:01 +0300
-
- Refactored option parsing.
-
- src/xz/options.c | 70 ++++++++++++++++++++++++++++----------------------------
- 1 file changed, 35 insertions(+), 35 deletions(-)
-
-commit 25adaaa56e2e51a47a910a8d73452414619a2e53
-Author: Lasse Collin
-Date: 2009-09-01 20:23:30 +0300
-
- Fix options parsing bug in xz.
-
- xz used to reject "xz --lzma2=pb=2," while
- "xz --lzma2=pb=2,," worked. Now both work.
-
- src/xz/options.c | 6 ++----
- 1 file changed, 2 insertions(+), 4 deletions(-)
-
-commit 5f6dddc6c911df02ba660564e78e6de80947c947
-Author: Lasse Collin
-Date: 2009-09-01 20:20:19 +0300
-
- Updated TODO.
-
- TODO | 3 +++
- 1 file changed, 3 insertions(+)
-
-commit 655457b9ada5ec7db398c5392e41290f3f332ea8
-Author: Lasse Collin
-Date: 2009-08-31 21:59:25 +0300
-
- Revert 43f44160b1ddcbf7e5205c37db09b3bebe7226f9
- and use a fix that works on all systems using
- GNU assembler.
-
- Maybe the assembler code is used e.g. on Solaris x86
- but let's worry about it if this doesn't work on it.
-
- src/liblzma/check/crc32_x86.S | 7 ++-----
- src/liblzma/check/crc64_x86.S | 7 ++-----
- 2 files changed, 4 insertions(+), 10 deletions(-)
-
-commit 162189c3477953805a28f96d3a75cb9ab9417928
-Author: Lasse Collin
-Date: 2009-08-30 17:29:19 +0300
-
- Updated THANKS.
-
- THANKS | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 2331f5f97af3e5897e23da45d9df3d664099c7f8
-Author: Lasse Collin