Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/public-domain/xz/dist Import XZ 5.0.3:



details:   https://anonhg.NetBSD.org/src/rev/29917ac6f2f8
branches:  trunk
changeset: 777658:29917ac6f2f8
user:      joerg <joerg%NetBSD.org@localhost>
date:      Tue Feb 28 13:46:53 2012 +0000

description:
Import XZ 5.0.3:
- memory leak in liblzma fixed
- better validation
- correct behavior for suid/sgid/sticky bit and hard links with xz --force
- cleanup and new translations

diffstat:

 external/public-domain/xz/dist/ChangeLog                                           |   569 ++
 external/public-domain/xz/dist/INSTALL                                             |    27 +-
 external/public-domain/xz/dist/NEWS                                                |    68 +-
 external/public-domain/xz/dist/THANKS                                              |    11 +
 external/public-domain/xz/dist/doc/examples/xz_pipe_comp.c                         |   127 +
 external/public-domain/xz/dist/doc/examples/xz_pipe_decomp.c                       |   115 +
 external/public-domain/xz/dist/doc/lzma-file-format.txt                            |     4 +-
 external/public-domain/xz/dist/po/cs.gmo                                           |   Bin 
 external/public-domain/xz/dist/po/cs.po                                            |   129 +-
 external/public-domain/xz/dist/po/de.gmo                                           |   Bin 
 external/public-domain/xz/dist/po/de.po                                            |   123 +-
 external/public-domain/xz/dist/po/fr.gmo                                           |   Bin 
 external/public-domain/xz/dist/po/fr.po                                            |   858 +++
 external/public-domain/xz/dist/po/it.gmo                                           |   Bin 
 external/public-domain/xz/dist/po/it.po                                            |   123 +-
 external/public-domain/xz/dist/po/pl.gmo                                           |   Bin 
 external/public-domain/xz/dist/po/pl.po                                            |   834 +++
 external/public-domain/xz/dist/src/common/sysdefs.h                                |    15 +
 external/public-domain/xz/dist/src/liblzma/api/lzma/block.h                        |     1 +
 external/public-domain/xz/dist/src/liblzma/api/lzma/container.h                    |    12 +
 external/public-domain/xz/dist/src/liblzma/api/lzma/filter.h                       |     8 +-
 external/public-domain/xz/dist/src/liblzma/api/lzma/lzma.h                         |     3 +
 external/public-domain/xz/dist/src/liblzma/api/lzma/version.h                      |     2 +-
 external/public-domain/xz/dist/src/liblzma/common/alone_decoder.c                  |     2 +-
 external/public-domain/xz/dist/src/liblzma/common/alone_encoder.c                  |     4 +-
 external/public-domain/xz/dist/src/liblzma/common/block_buffer_encoder.c           |    18 +-
 external/public-domain/xz/dist/src/liblzma/common/block_encoder.c                  |     7 +-
 external/public-domain/xz/dist/src/liblzma/common/common.c                         |     2 +-
 external/public-domain/xz/dist/src/liblzma/common/common.h                         |     2 +-
 external/public-domain/xz/dist/src/liblzma/common/filter_common.c                  |     6 +-
 external/public-domain/xz/dist/src/liblzma/common/index_decoder.c                  |     9 +-
 external/public-domain/xz/dist/src/liblzma/common/index_encoder.c                  |    11 +-
 external/public-domain/xz/dist/src/liblzma/common/stream_buffer_encoder.c          |    23 +-
 external/public-domain/xz/dist/src/liblzma/common/stream_encoder.c                 |     2 +-
 external/public-domain/xz/dist/src/liblzma/delta/delta_encoder.c                   |     2 +-
 external/public-domain/xz/dist/src/liblzma/lz/lz_decoder.c                         |     2 +-
 external/public-domain/xz/dist/src/liblzma/lz/lz_encoder.c                         |     2 +-
 external/public-domain/xz/dist/src/liblzma/lzma/lzma2_decoder.c                    |     8 +-
 external/public-domain/xz/dist/src/liblzma/lzma/lzma2_encoder.c                    |     2 +-
 external/public-domain/xz/dist/src/liblzma/simple/arm.c                            |     2 +-
 external/public-domain/xz/dist/src/liblzma/simple/armthumb.c                       |     2 +-
 external/public-domain/xz/dist/src/liblzma/simple/ia64.c                           |     2 +-
 external/public-domain/xz/dist/src/liblzma/simple/powerpc.c                        |     2 +-
 external/public-domain/xz/dist/src/liblzma/simple/simple_coder.c                   |     2 +-
 external/public-domain/xz/dist/src/liblzma/simple/sparc.c                          |     2 +-
 external/public-domain/xz/dist/src/lzmainfo/lzmainfo.c                             |     4 +-
 external/public-domain/xz/dist/src/xz/coder.c                                      |     2 +-
 external/public-domain/xz/dist/src/xz/file_io.c                                    |    17 +-
 external/public-domain/xz/dist/src/xz/hardware.h                                   |     2 +-
 external/public-domain/xz/dist/src/xz/message.c                                    |     8 +-
 external/public-domain/xz/dist/src/xz/message.h                                    |    18 +-
 external/public-domain/xz/dist/src/xz/options.c                                    |     6 +-
 external/public-domain/xz/dist/src/xz/signals.c                                    |     2 +-
 external/public-domain/xz/dist/src/xz/suffix.c                                     |    82 +-
 external/public-domain/xz/dist/src/xz/util.h                                       |     7 +-
 external/public-domain/xz/dist/src/xz/xz.1                                         |     2 +-
 external/public-domain/xz/dist/src/xzdec/xzdec.c                                   |     6 +-
 external/public-domain/xz/dist/tests/compress_prepared_bcj_sparc.base64            |    54 +-
 external/public-domain/xz/dist/tests/compress_prepared_bcj_x86.base64              |    60 +-
 external/public-domain/xz/dist/tests/files/README                                  |     4 +
 external/public-domain/xz/dist/tests/files/bad-0cat-alone.xz.base64                |     4 +-
 external/public-domain/xz/dist/tests/files/bad-0cat-header_magic.xz.base64         |     4 +-
 external/public-domain/xz/dist/tests/files/bad-0catpad-empty.xz.base64             |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-block_header-1.xz.base64          |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-block_header-2.xz.base64          |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-block_header-3.xz.base64          |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-block_header-4.xz.base64          |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-block_header-5.xz.base64          |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-check-crc32.xz.base64             |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-check-crc64.xz.base64             |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-check-sha256.xz.base64            |     5 +-
 external/public-domain/xz/dist/tests/files/bad-1-lzma2-1.xz.base64                 |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-lzma2-2.xz.base64                 |    19 +-
 external/public-domain/xz/dist/tests/files/bad-1-lzma2-3.xz.base64                 |    19 +-
 external/public-domain/xz/dist/tests/files/bad-1-lzma2-4.xz.base64                 |    19 +-
 external/public-domain/xz/dist/tests/files/bad-1-lzma2-5.xz.base64                 |    19 +-
 external/public-domain/xz/dist/tests/files/bad-1-lzma2-6.xz.base64                 |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-lzma2-7.xz.base64                 |    19 +-
 external/public-domain/xz/dist/tests/files/bad-1-lzma2-8.xz.base64                 |    21 +-
 external/public-domain/xz/dist/tests/files/bad-1-stream_flags-1.xz.base64          |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-stream_flags-2.xz.base64          |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-stream_flags-3.xz.base64          |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-vli-1.xz.base64                   |     4 +-
 external/public-domain/xz/dist/tests/files/bad-1-vli-2.xz.base64                   |     4 +-
 external/public-domain/xz/dist/tests/files/bad-2-compressed_data_padding.xz.base64 |     5 +-
 external/public-domain/xz/dist/tests/files/bad-2-index-1.xz.base64                 |     5 +-
 external/public-domain/xz/dist/tests/files/bad-2-index-2.xz.base64                 |     5 +-
 external/public-domain/xz/dist/tests/files/bad-2-index-3.xz.base64                 |     5 +-
 external/public-domain/xz/dist/tests/files/bad-2-index-4.xz.base64                 |     5 +-
 external/public-domain/xz/dist/tests/files/bad-2-index-5.xz.base64                 |     5 +-
 external/public-domain/xz/dist/tests/files/good-0cat-empty.xz.base64               |     4 +-
 external/public-domain/xz/dist/tests/files/good-0catpad-empty.xz.base64            |     4 +-
 external/public-domain/xz/dist/tests/files/good-1-3delta-lzma2.xz.base64           |    23 +-
 external/public-domain/xz/dist/tests/files/good-1-block_header-1.xz.base64         |     4 +-
 external/public-domain/xz/dist/tests/files/good-1-block_header-2.xz.base64         |     4 +-
 external/public-domain/xz/dist/tests/files/good-1-block_header-3.xz.base64         |     4 +-
 external/public-domain/xz/dist/tests/files/good-1-check-crc32.xz.base64            |     4 +-
 external/public-domain/xz/dist/tests/files/good-1-check-crc64.xz.base64            |     4 +-
 external/public-domain/xz/dist/tests/files/good-1-check-none.xz.base64             |     4 +-
 external/public-domain/xz/dist/tests/files/good-1-check-sha256.xz.base64           |     5 +-
 external/public-domain/xz/dist/tests/files/good-1-delta-lzma2.tiff.xz.base64       |  2211 +++++----
 external/public-domain/xz/dist/tests/files/good-1-lzma2-1.xz.base64                |    19 +-
 external/public-domain/xz/dist/tests/files/good-1-lzma2-2.xz.base64                |    19 +-
 external/public-domain/xz/dist/tests/files/good-1-lzma2-3.xz.base64                |    19 +-
 external/public-domain/xz/dist/tests/files/good-1-lzma2-4.xz.base64                |    21 +-
 external/public-domain/xz/dist/tests/files/good-1-lzma2-5.xz.base64                |     4 +
 external/public-domain/xz/dist/tests/files/good-1-sparc-lzma2.xz.base64            |    27 +-
 external/public-domain/xz/dist/tests/files/good-1-x86-lzma2.xz.base64              |    31 +-
 external/public-domain/xz/dist/tests/files/good-2-lzma2.xz.base64                  |     5 +-
 external/public-domain/xz/dist/tests/files/unsupported-block_header.xz.base64      |     4 +-
 external/public-domain/xz/dist/tests/files/unsupported-check.xz.base64             |     4 +-
 external/public-domain/xz/dist/tests/files/unsupported-filter_flags-1.xz.base64    |     4 +-
 external/public-domain/xz/dist/tests/files/unsupported-filter_flags-2.xz.base64    |     4 +-
 external/public-domain/xz/dist/tests/files/unsupported-filter_flags-3.xz.base64    |     4 +-
 114 files changed, 4444 insertions(+), 1628 deletions(-)

diffs (truncated from 8142 to 300 lines):

diff -r a7b96fd09684 -r 29917ac6f2f8 external/public-domain/xz/dist/ChangeLog
--- a/external/public-domain/xz/dist/ChangeLog  Tue Feb 28 12:08:37 2012 +0000
+++ b/external/public-domain/xz/dist/ChangeLog  Tue Feb 28 13:46:53 2012 +0000
@@ -1,3 +1,572 @@
+commit e32cb264ea72a4459810f30abad70dae5a4fa17d
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-05-21 16:59:22 +0300
+
+    Bump version and soname for 5.0.3.
+
+ src/liblzma/Makefile.am        |    2 +-
+ src/liblzma/api/lzma/version.h |    2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+commit 65cff45f8fd1c250491557157cce0f5f38481082
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-05-21 16:56:53 +0300
+
+    Update NEWS for 5.0.3.
+
+ NEWS |   36 ++++++++++++++++++++++++++++++++++--
+ 1 files changed, 34 insertions(+), 2 deletions(-)
+
+commit 316c67ffdae1f811ac95e838d5290a013bff4ca7
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-05-21 16:28:44 +0300
+
+    Add French translation.
+    
+    It is known that the BCJ filter --help text is only
+    partially translated.
+
+ po/LINGUAS |    1 +
+ po/fr.po   |  864 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 2 files changed, 865 insertions(+), 0 deletions(-)
+
+commit 1931175eea6d09c0845d6e8e334a7333647f11c0
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-05-21 15:12:10 +0300
+
+    xz: Translate also the string used to print the program name.
+    
+    French needs a space before a colon, e.g. "xz : foo error".
+
+ src/xz/message.c |    6 +++++-
+ 1 files changed, 5 insertions(+), 1 deletions(-)
+
+commit 841dc1f891b48b23f84c0f0e0c86c7c4e4bdcdf5
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-05-17 12:26:28 +0300
+
+    Update THANKS.
+
+ THANKS |    3 +++
+ 1 files changed, 3 insertions(+), 0 deletions(-)
+
+commit 0f7e2d36240ebf1159d5fb85d8cd7422337a0d3f
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-05-17 12:21:33 +0300
+
+    Update INSTALL with a note about linker problem on OpenSolaris x86.
+
+ INSTALL |   23 +++++++++++++++++------
+ 1 files changed, 17 insertions(+), 6 deletions(-)
+
+commit 793d857e01e1725f16fc0c8af8172c91a9e38617
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-05-17 12:01:37 +0300
+
+    Build: Fix initialization of enable_check_* variables in configure.ac.
+    
+    This doesn't matter much in practice since it is unlikely
+    that anyone would have such environment variable names.
+    
+    Thanks to Wim Lewis.
+
+ configure.ac |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit afcff45cee04c5c7d9c333504046ffb63d1418b5
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-05-17 11:54:38 +0300
+
+    Add underscores to attributes (__attribute((__foo__))).
+
+ src/liblzma/common/alone_decoder.c |    2 +-
+ src/liblzma/common/alone_encoder.c |    2 +-
+ src/liblzma/common/block_encoder.c |    2 +-
+ src/liblzma/common/common.c        |    2 +-
+ src/liblzma/common/common.h        |    2 +-
+ src/liblzma/common/index_decoder.c |    9 +++++----
+ src/liblzma/common/index_encoder.c |   11 ++++++-----
+ src/liblzma/delta/delta_encoder.c  |    2 +-
+ src/liblzma/lz/lz_decoder.c        |    2 +-
+ src/liblzma/lz/lz_encoder.c        |    2 +-
+ src/liblzma/simple/arm.c           |    2 +-
+ src/liblzma/simple/armthumb.c      |    2 +-
+ src/liblzma/simple/ia64.c          |    2 +-
+ src/liblzma/simple/powerpc.c       |    2 +-
+ src/liblzma/simple/simple_coder.c  |    2 +-
+ src/liblzma/simple/sparc.c         |    2 +-
+ src/lzmainfo/lzmainfo.c            |    4 ++--
+ src/xz/coder.c                     |    2 +-
+ src/xz/hardware.h                  |    2 +-
+ src/xz/message.c                   |    2 +-
+ src/xz/message.h                   |   18 +++++++++---------
+ src/xz/options.c                   |    6 +++---
+ src/xz/signals.c                   |    2 +-
+ src/xz/util.h                      |    6 +++---
+ src/xzdec/xzdec.c                  |    6 +++---
+ 25 files changed, 49 insertions(+), 47 deletions(-)
+
+commit 22159c6ba2300a006f2e46ce85ae132e2d2f7d57
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-18 19:35:49 +0300
+
+    Update THANKS.
+
+ THANKS |    2 ++
+ 1 files changed, 2 insertions(+), 0 deletions(-)
+
+commit 5e3499059515033d1ce44b6fb0fa49183c7ac633
+Author: Martin Väth <vaeth%mathematik.uni-wuerzburg.de@localhost>
+Date:   2011-04-15 04:54:49 -0400
+
+    xzgrep: fix typo in $0 parsing
+    
+    Reported-by: Diego Elio Pettenò <flameeyes%gentoo.org@localhost>
+    Signed-off-by: Martin Väth <vaeth%mathematik.uni-wuerzburg.de@localhost>
+    Signed-off-by: Mike Frysinger <vapier%gentoo.org@localhost>
+
+ src/scripts/xzgrep.in |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+commit 1125611b9b8d4a209b6a73d2c76e1b39c065972a
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-12 11:59:49 +0300
+
+    Remove doubled words from documentation and comments.
+    
+    Spot candidates by running these commands:
+      git ls-files |xargs perl -0777 -n \
+        -e 'while (/\b(then?|[iao]n|i[fst]|but|f?or|at|and|[dt]o)\s+\1\b/gims)' \
+        -e '{$n=($` =~ tr/\n/\n/ + 1); ($v=$&)=~s/\n/\\n/g; print "$ARGV:$n:$v\n"}'
+    
+    Thanks to Jim Meyering for the original patch.
+
+ doc/lzma-file-format.txt           |    4 ++--
+ src/liblzma/common/alone_encoder.c |    2 +-
+ src/liblzma/lzma/lzma2_encoder.c   |    2 +-
+ src/xz/file_io.c                   |    2 +-
+ src/xz/xz.1                        |    2 +-
+ windows/INSTALL-Windows.txt        |    2 +-
+ 6 files changed, 7 insertions(+), 7 deletions(-)
+
+commit 3f8fa53837bae8b44f3addf19923e26401336c3d
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-11 21:04:13 +0300
+
+    liblzma: Document lzma_easy_(enc|dec)oder_memusage() better too.
+
+ src/liblzma/api/lzma/container.h |    9 +++++++++
+ 1 files changed, 9 insertions(+), 0 deletions(-)
+
+commit 320d734c20d0776e3eb80f6b5984ddeb494715b5
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-11 20:59:07 +0300
+
+    liblzma: Document lzma_raw_(enc|dec)oder_memusage() better.
+    
+    It didn't mention the return value that is used if
+    an error occurs.
+
+ src/liblzma/api/lzma/filter.h |    8 ++++++--
+ 1 files changed, 6 insertions(+), 2 deletions(-)
+
+commit 2ee4edeffc8d9734bf68230df31b20ac6a94c9b5
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-11 13:59:50 +0300
+
+    liblzma: Don't create an empty Block in lzma_stream_buffer_encode().
+    
+    Empty Block was created if the input buffer was empty.
+    Empty Block wastes a few bytes of space, but more importantly
+    it triggers a bug in XZ Utils 5.0.1 and older when trying
+    to decompress such a file. 5.0.1 and older consider such
+    files to be corrupt. I thought that no encoder creates empty
+    Blocks when releasing 5.0.2 but I was wrong.
+
+ src/liblzma/common/stream_buffer_encoder.c |   20 +++++++++++++-------
+ 1 files changed, 13 insertions(+), 7 deletions(-)
+
+commit 73f56fb87d54091d0c4fd22d70e6f042902e3b63
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-11 13:28:40 +0300
+
+    liblzma: Fix API docs to mention LZMA_UNSUPPORTED_CHECK.
+    
+    This return value was missing from the API comments of
+    four functions.
+
+ src/liblzma/api/lzma/block.h     |    1 +
+ src/liblzma/api/lzma/container.h |    3 +++
+ 2 files changed, 4 insertions(+), 0 deletions(-)
+
+commit 4ce1cf97a88ae1640a380dd19cbc255d729f966b
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-11 13:21:28 +0300
+
+    liblzma: Validate encoder arguments better.
+    
+    The biggest problem was that the integrity check type
+    wasn't validated, and e.g. lzma_easy_buffer_encode()
+    would create a corrupt .xz Stream if given an unsupported
+    Check ID. Luckily applications don't usually try to use
+    an unsupport Check ID, so this bug is unlikely to cause
+    many real-world problems.
+
+ src/liblzma/common/block_buffer_encoder.c  |   18 ++++++++++++------
+ src/liblzma/common/block_encoder.c         |    5 +++++
+ src/liblzma/common/stream_buffer_encoder.c |    3 +++
+ 3 files changed, 20 insertions(+), 6 deletions(-)
+
+commit 972f05d7a4268dbe42573701f83faa45d03249eb
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-09 18:29:30 +0300
+
+    Update THANKS.
+
+ THANKS |    1 +
+ 1 files changed, 1 insertions(+), 0 deletions(-)
+
+commit 28154eeaf6e3442cd1e174f4e81266d60c4dac60
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-09 18:28:58 +0300
+
+    liblzma: Add missing #ifdefs to filter_common.c.
+    
+    Passing --disable-decoders to configure broke a few
+    encoders due to missing #ifdefs in filter_common.c.
+    
+    Thanks to Jason Gorski for the patch.
+
+ src/liblzma/common/filter_common.c |    6 +++---
+ 1 files changed, 3 insertions(+), 3 deletions(-)
+
+commit aa95516d3d509c6b7895ee519004afcf500a0759
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-02 14:49:56 +0300
+
+    liblzma: Fix a memory leak in stream_encoder.c.
+    
+    It leaks old filter options structures (hundred bytes or so)
+    every time the lzma_stream is reinitialized. With the xz tool,
+    this happens when compressing multiple files.
+
+ src/liblzma/common/stream_encoder.c |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 58f52c72f49562a08042da9a2f4bbdf4dd162d0c
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-01 08:47:46 +0300
+
+    Bumped version and liblzma soname to 5.0.2.
+
+ src/liblzma/Makefile.am        |    2 +-
+ src/liblzma/api/lzma/version.h |    2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+commit 162779682e01d15f0ce386ef7f40d1be05ad0053
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-04-01 08:47:20 +0300
+
+    Updated NEWS for 5.0.2.
+
+ NEWS |   18 ++++++++++++++++++
+ 1 files changed, 18 insertions(+), 0 deletions(-)
+
+commit 45553f9b4b0175c292023010dc41520347004852
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-03-31 15:06:58 +0300
+
+    Update INSTALL with another note about IRIX.
+
+ INSTALL |    4 ++++
+ 1 files changed, 4 insertions(+), 0 deletions(-)
+
+commit af9d48d5515eadef689b1ce9ffb91e4dbcbc7f35
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-03-31 12:22:55 +0300
+
+    Tests: Add a new file to test empty LZMA2 streams.
+
+ tests/files/README            |    4 ++++
+ tests/files/good-1-lzma2-5.xz |  Bin 0 -> 52 bytes
+ 2 files changed, 4 insertions(+), 0 deletions(-)
+
+commit d099ef9f517b59ab8e3b6f6aa0543c3643983470
+Author: Lasse Collin <lasse.collin%tukaani.org@localhost>
+Date:   2011-03-31 11:54:48 +0300



Home | Main Index | Thread Index | Old Index