summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* DOS: Update Makefile.v5.2.0Lasse Collin2014-12-211-0/+1
|
* Windows: Fix bin_i486 to bin_i686 in build.bash.Lasse Collin2014-12-211-1/+1
|
* Docs: Use lzma_cputhreads() in 04_compress_easy_mt.c.Lasse Collin2014-12-211-4/+26
|
* Docs: Update docs/examples/00_README.txt.Lasse Collin2014-12-211-0/+4
|
* Bump version and soname for 5.2.0.Lasse Collin2014-12-213-5/+5
| | | | | | | I know that soname != app version, but I skip AGE=1 in -version-info to make the soname match the liblzma version anyway. It doesn't hurt anything as long as it doesn't conflict with library versioning rules.
* Avoid variable-length arrays in the debug programs.Lasse Collin2014-12-212-2/+4
|
* Build: Include 04_compress_easy_mt.c in the tarball.Lasse Collin2014-12-211-0/+1
|
* Fix build when --disable-threads is used.Lasse Collin2014-12-211-0/+2
|
* po/fr: improve wording for help for --lzma1/--lzma2.Adrien Nader2014-12-211-1/+1
|
* po/fr: missing line in translation of --extreme.Adrien Nader2014-12-211-0/+1
|
* Update NEWS for 5.2.0.Lasse Collin2014-12-211-0/+65
|
* Update NEWS for 5.0.8.Lasse Collin2014-12-211-0/+12
|
* xz: Fix a comment.Lasse Collin2014-12-211-2/+2
|
* Update INSTALL about the dependencies of the scripts.Lasse Collin2014-12-201-5/+10
|
* Windows: Update build instructions.Lasse Collin2014-12-202-29/+30
|
* Windows: Update the build script and README-Windows.txt.Lasse Collin2014-12-202-23/+30
| | | | | | | | | | The 32-bit build is now for i686 or newer because the prebuilt MinGW-w64 toolchains include i686 code in the executables even if one uses -march=i486. The build script builds 32-bit SSE2 enabled version too. Run-time detection of SSE2 support would be nice (on any OS) but it's not implemented in XZ Utils yet.
* Windows: Define TUKLIB_SYMBOL_PREFIX in config.h.Lasse Collin2014-12-191-0/+3
| | | | It is to keep all symbols in the lzma_ namespace.
* xz: Update the man page about --threads.Lasse Collin2014-12-161-5/+0
|
* xz: Update the man page about --block-size.Lasse Collin2014-12-161-8/+33
|
* po/fr: several more translation updates: reword and handle --ignore-check.Adrien Nader2014-12-121-24/+26
|
* po/fr: yet another place where my email address had to be updated.Adrien Nader2014-12-121-1/+1
|
* po/fr: fix several typos that have been around since the beginning.Adrien Nader2014-12-121-11/+11
|
* po/fr: last batch of new translations for now.Adrien Nader2014-12-121-8/+8
| | | | Four new error messages.
* po/fr: translations for --threads, --block-size and --block-list.Adrien Nader2014-12-121-4/+8
|
* po/fr: remove fuzzy marker for error messages that will be kept in English.Adrien Nader2014-12-121-6/+16
| | | | | | | | | | | | | | The following is a copy of a comment inside fr.po: Note from translator on "file status flags". The following entry is kept un-translated on purpose. It is difficult to translate and should only happen in exceptional circumstances which means that translating would: - lose some of the meaning - make it more difficult to look up in search engines; it might happen one in a million times, if we dilute the error message in 20 languages, it will be almost impossible to find an explanation and support for the error.
* po/fr: several minor updates and better wording.Adrien Nader2014-12-121-7/+7
| | | | | Meaning doesn't change at all: it's only for better wording and/or formatting of a few strings.
* po/fr: update my email address and copyright years.Adrien Nader2014-12-121-2/+2
|
* fr.po: commit file after only "update-po" so actual is readable.Adrien Nader2014-12-121-112/+199
|
* liblzma: Document how lzma_mt.block_size affects memory usage.Lasse Collin2014-12-021-0/+4
|
* Update INSTALL about a "make check" failure in test_scripts.sh.Lasse Collin2014-11-281-7/+17
|
* Remove LZMA_UNSTABLE macro.Lasse Collin2014-11-263-7/+0
|
* liblzma: Update lzma_stream_encoder_mt() API docs.Lasse Collin2014-11-261-2/+3
|
* liblzma: Verify the filter chain in threaded encoder initialization.Lasse Collin2014-11-251-3/+6
| | | | | | | This way an invalid filter chain is detected at the Stream encoder initialization instead of delaying it to the first call to lzma_code() which triggers the initialization of the actual filter encoder(s).
* Build: Update m4/ax_pthread.m4 from Autoconf Archive.Lasse Collin2014-11-171-24/+47
|
* Build: Replace obsolete AC_HELP_STRING with AS_HELP_STRING.Lasse Collin2014-11-172-19/+19
|
* Build: Fix Autoconf warnings about escaped backquotes.Lasse Collin2014-11-171-4/+3
| | | | | Thanks to Daniel Richard G. for pointing out that it's good to sometimes run autoreconf -fi with -Wall.
* xzdiff: Use mkdir if mktemp isn't available.Lasse Collin2014-11-101-1/+16
|
* xzdiff: Create a temporary directory to hold a temporary file.Lasse Collin2014-11-101-5/+5
| | | | | | | | | | | | | | | This avoids the possibility of "File name too long" when creating a temp file when the input file name is very long. This also means that other users on the system can no longer see the input file names in /tmp (or whatever $TMPDIR is) since the temporary directory will have a generic name. This usually doesn't matter since on many systems one can see the arguments given to all processes anyway. The number X chars to mktemp where increased from 6 to 10. Note that with some shells temp files or dirs won't be used at all.
* liblzma: Fix lzma_mt.preset in lzma_stream_encoder_mt_memusage().Lasse Collin2014-11-101-2/+1
| | | | | It read the filter chain from a wrong variable. This is a similar bug that was fixed in 9494fb6d0ff41c585326f00aa8f7fe58f8106a5e.
* Update THANKS.Lasse Collin2014-11-101-0/+1
|
* Update .gitignore files.Lasse Collin2014-10-292-0/+5
|
* Build: Prepare to support Automake's subdir-objects.Lasse Collin2014-10-296-15/+40
| | | | | | | | | Due to a bug in Automake, subdir-objects won't be enabled for now. http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17354 Thanks to Daniel Richard G. for the original patches.
* Translations: Update the Italian translation.Lasse Collin2014-10-241-177/+275
| | | | Thanks to Milo Casagrande.
* Translations: Update the Polish translation.Lasse Collin2014-10-181-118/+214
| | | | Thanks to Jakub Bogusz.
* l10n: de.po: Change translator email address.Andre Noll2014-10-141-3/+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: Update German translationAndre Noll2014-10-141-250/+281
| | | | Signed-off-by: Andre Noll <maan@systemlinux.org>
* l10n: de.po: Fix typo: Schießen -> Schließen.Andre Noll2014-10-141-1/+1
| | | | | | That's a funny one since "schießen" means to shoot :) Signed-off-by: Andre Noll <maan@systemlinux.org>
* Update THANKS.Lasse Collin2014-10-091-0/+1
|
* Add support for AmigaOS/AROS to tuklib_physmem().Lasse Collin2014-10-092-1/+9
| | | | Thanks to Fredrik Wikstrom.
* xzgrep: Avoid passing both -q and -l to grep.Lasse Collin2014-10-091-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.