aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/check/crc32_table.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2024-04-10liblzma: CRC: Simplify table omission macrosLasse Collin1-6/+4
A macro is useful to prevent a single #if directive from getting too ugly but only one macro is needed for all archs.
2024-04-10liblzma: ARM64 CRC: Fix omission of CRC32 tableLasse Collin1-1/+1
The macro name had an odd typo so the table wasn't omitted when it should have. Fixes: 1940f0ec28f08c0ac72c1413d9706fb82eabe6ad
2024-02-14Add SPDX license identifier into 0BSD source code files.Lasse Collin1-0/+2
2024-02-14Change most public domain parts to 0BSD.Lasse Collin1-3/+0
Translations and doc/xz-file-format.txt and doc/lzma-file-format.txt were not touched. COPYING.0BSD was added.
2024-02-01liblzma: Check HAVE_USABLE_CLMUL before omitting CRC32 table.Jia Tan1-2/+2
This was split from the prior commit so it could be easily applied to the 5.4 branch. Closes: https://github.com/tukaani-project/xz/pull/77
2024-02-01liblzma: Omit CRC tables when not needed with ARM64 optimizations.Jia Tan1-3/+15
This is similar to the existing x86-64 CLMUL conditions to omit the tables. They were slightly refactored to improve readability.
2023-10-13liblzma: Added crc32_clmul to crc32_fast.c.Hans Jansen1-4/+15
2019-06-24liblzma: Silence clang -Wmissing-variable-declarations.Lasse Collin1-0/+3
2009-04-13Put the interesting parts of XZ Utils into the public domain.Lasse Collin1-4/+3
Some minor documentation cleanups were made at the same time.
2008-04-25Removed src/liblzma/common/sysdefs.h symlink, which wasLasse Collin1-1/+1
annoying, because "make dist" put two copies of sysdefs.h into the tarball instead of the symlink.
2008-01-06Introduced compatibility with systems that have pre-C99Lasse Collin1-3/+1
or no inttypes.h. This is useful when the compiler has good enough support for C99, but libc headers don't. Changed liblzma API so that sys/types.h and inttypes.h have to be #included before #including lzma.h. On systems that don't have C99 inttypes.h, it's the problem of the applications to provide the required types and macros before #including lzma.h. If lzma.h defined the missing types and macros, it could conflict with third-party applications whose configure has detected that the types are missing and defined them in config.h already. An alternative would have been introducing lzma_uint32 and similar types, but that would just be an extra pain on modern systems.
2007-12-09Imported to git.Lasse Collin1-0/+22