summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* po/fr: improve wording for help for --lzma1/--lzma2.v5.0.8v5.0Adrien Nader2014-12-211-1/+1
|
* po/fr: missing line in translation of --extreme.Adrien Nader2014-12-211-0/+1
|
* xz: Fix a comment.Lasse Collin2014-12-211-2/+2
|
* Bump version and soname for 5.0.8.Lasse Collin2014-12-212-2/+2
|
* Update NEWS for 5.0.8.Lasse Collin2014-12-211-0/+12
|
* Translations: Update the French translation.Lasse Collin2014-12-201-116/+93
| | | | Thanks to Adrien Nader.
* Update THANKS.Lasse Collin2014-12-181-0/+1
|
* Update INSTALL about a "make check" failure in test_scripts.sh.Lasse Collin2014-12-181-7/+17
|
* Build: Update m4/ax_pthread.m4 from Autoconf Archive.Lasse Collin2014-12-181-24/+47
|
* Build: Replace obsolete AC_HELP_STRING with AS_HELP_STRING.Lasse Collin2014-12-181-17/+17
|
* Build: Fix Autoconf warnings about escaped backquotes.Lasse Collin2014-12-181-3/+3
|
* Update THANKS.Lasse Collin2014-12-171-0/+1
|
* Add support for AmigaOS/AROS to tuklib_physmem().Lasse Collin2014-12-172-1/+9
| | | | Thanks to Fredrik Wikstrom.
* xzgrep: Avoid passing both -q and -l to grep.Lasse Collin2014-12-171-2/+4
| | | | | | | | | | | | The behavior of grep -ql varies: - GNU grep behaves like grep -q. - OpenBSD grep behaves like grep -l. POSIX doesn't make it 100 % clear what behavior is expected. Anyway, using both -q and -l at the same time makes no sense so both options simply should never be used at the same time. Thanks to Christian Weisgerber.
* Build: Detect supported compiler warning flags better.Lasse Collin2014-12-171-2/+3
| | | | | | | | | Clang and nowadays also GCC accept any -Wfoobar option but then may give a warning that an unknown warning option was specified. To avoid adding unsupported warning options, the options are now tested with -Werror. Thanks to Charles Diza.
* l10n: de.po: Change translator email address.Andre Noll2014-10-181-4/+3
| | | | | | | | Although the old address is still working, the new one should be preferred. So this commit changes all three places in de.po accordingly. Signed-off-by: Andre Noll <maan@tuebingen.mpg.de>
* l10n: de.po: Fix typo: Schießen -> Schließen.Andre Noll2014-10-181-1/+1
| | | | | | That's a funny one since "schießen" means to shoot :) Signed-off-by: Andre Noll <maan@systemlinux.org>
* Bump version and soname for 5.0.7.v5.0.7Lasse Collin2014-09-202-2/+2
|
* Update NEWS for 5.0.7.Lasse Collin2014-09-201-0/+11
|
* liblzma: Fix invalid Libs.private value in liblzma.pc.Lasse Collin2014-09-201-1/+1
|
* liblzma: Fix a portability problem in Makefile.am.Lasse Collin2014-09-201-1/+1
| | | | | | | | POSIX supports $< only in inference rules (suffix rules). Using it elsewhere is a GNU make extension and doesn't work e.g. with OpenBSD make. Thanks to Christian Weisgerber for the patch.
* Bump version and soname for 5.0.6.v5.0.6Lasse Collin2014-09-142-2/+2
|
* Update NEWS for 5.0.6.Lasse Collin2014-09-141-0/+7
|
* xzgrep: List xzgrep_expected_output in tests/Makefile.am.Lasse Collin2014-09-091-1/+2
|
* xzgrep: Improve the test script.Lasse Collin2014-09-093-11/+55
| | | | | Now it should be close to the functionality of the original version by Pavel Raiskup.
* xzgrep: Add a test for the previous fix.Lasse Collin2014-09-091-4/+22
| | | | | This is a simplified version of Pavel Raiskup's original patch.
* xzgrep: exit 0 when at least one file matches.Lasse Collin2014-09-091-2/+13
| | | | | | | | | | Mimic the original grep behavior and return exit_success when at least one xz compressed file matches given pattern. Original bugreport: https://bugzilla.redhat.com/show_bug.cgi?id=1108085 Thanks to Pavel Raiskup for the patch.
* Build: Fix the combination of --disable-xzdec --enable-lzmadec.Lasse Collin2014-04-261-1/+9
| | | | | | | | In this case "make install" could fail if the man page directory didn't already exist at the destination. If it did exist, a dangling symlink was created there. Now the link is omitted instead. This isn't the best fix but it's better than the old behavior.
* Build: Add --disable-doc to configure.Lasse Collin2014-04-263-0/+14
|
* Update INSTALL.Lasse Collin2014-04-261-0/+25
| | | | | | | | | | | Add a note about failing "make check". The source of the problem should be fixed in libtool (if it really is a libtool bug and not mine) but I'm unable to spend time on that for now. Thanks to Nelson H. F. Beebe for reporting the issue. Add a note about a possible need to run "ldconfig" after "make install".
* xz: Rename a variable to avoid a namespace collision on Solaris.Lasse Collin2014-04-261-5/+7
| | | | | | | | | I don't know the details but I have an impression that there's no problem in practice if using GCC since people have built xz with GCC (without patching xz), but renaming the variable cannot hurt either. Thanks to Mark Ashley.
* xz: Fix a comment.Lasse Collin2014-04-261-2/+2
|
* liblzma: Avoid C99 compound literal arrays.Lasse Collin2014-04-261-3/+5
| | | | | MSVC 2013 doesn't like them. Maybe they aren't so good for readability either since many aren't used to them.
* liblzma: Remove a useless C99ism from sha256.c.Lasse Collin2014-04-261-1/+1
| | | | Unsurprisingly it makes no difference in compiled output.
* xz: Fix use of wrong variable.Lasse Collin2014-04-261-1/+1
| | | | | | Since the only call to suffix_set() uses optarg as the argument, fixing this bug doesn't change the behavior of the program.
* Fix typos in comments.Lasse Collin2014-04-261-1/+1
|
* Update THANKS.Lasse Collin2014-04-261-0/+1
|
* liblzma: Document the need for block->check for lzma_block_header_decode().Lasse Collin2014-04-261-0/+3
| | | | Thanks to Tomer Chachamu.
* Update TODO.Lasse Collin2014-04-261-4/+0
|
* Build: Remove a comment about Automake 1.10 from configure.ac.Lasse Collin2014-04-261-2/+0
| | | | | The previous commit supports silent rules and that requires Automake 1.11.
* Build: Create liblzma.pc in a src/liblzma/Makefile.am.Lasse Collin2014-04-262-1/+20
| | | | | | | | | | | | | | | | Previously it was done in configure, but doing that goes against the Autoconf manual. Autoconf requires that it is possible to override e.g. prefix after running configure and that doesn't work correctly if liblzma.pc is created by configure. A potential downside of this change is that now e.g. libdir in liblzma.pc is a standalone string instead of being defined via ${prefix}, so if one overrides prefix when running pkg-config the libdir won't get the new value. I don't know if this matters in practice. Thanks to Vincent Torri.
* macosx: separate liblzma packageAnders F Bjorklund2013-08-031-8/+15
|
* macosx: set minimum to leopardAnders F Bjorklund2013-08-031-5/+8
|
* move configurables into variablesAnders F Bjorklund2013-08-031-7/+18
|
* Build: Fix the detection of missing CRC32.Lasse Collin2013-08-031-1/+1
| | | | Thanks to Vincent Torri.
* Man pages: Use similar syntax for synopsis as in xz.v5.0.5Lasse Collin2013-06-303-10/+10
| | | | | | | | The man pages of lzmainfo, xzmore, and xzdec had similar constructs as the man page of xz had before the commit eb6ca9854b8eb9fbf72497c1cf608d6b19d2d494. Eric S. Raymond didn't mention these man pages in his bug report, but it's nice to be consistent.
* Update NEWS for 5.0.5.Lasse Collin2013-06-301-0/+52
|
* Bump version and soname for 5.0.5.Lasse Collin2013-06-302-2/+2
|
* xz: Fix return value type in io_write_buf().Lasse Collin2013-06-281-1/+1
| | | | | It didn't affect the behavior of the code since -1 becomes true anyway.
* xz: Remove an outdated NetBSD-specific comment.Lasse Collin2013-06-281-4/+0
| | | | Nowadays errno == EFTYPE is documented in open(2).