summaryrefslogtreecommitdiffstats
path: root/Utilities/cmliblzma/liblzma/common
Commit message (Collapse)AuthorAgeFilesLines
* liblzma: Enable multi threaded stream encoding supportNils Gladitz2021-04-221-0/+1
|
* Merge branch 'upstream-liblzma' into lzma-threadsBrad King2021-04-2216-46/+37
| | | | | * upstream-liblzma: liblzma 2020-03-17 (2327a461)
* Merge branch 'upstream-liblzma' into update-liblzmaBrad King2018-08-0642-342/+2235
| | | | | * upstream-liblzma: liblzma 2018-04-29 (b5be61cc)
* liblzma: Revert "Port from C99 to C89/90"Brad King2018-08-0630-490/+350
| | | | | | Revert commit v3.1.0-rc1~255^2~5 (liblzma: Port from C99 to C89/90, 2014-07-13). We now compile as C99 or above except on MSVC where we will use another approach.
* liblzma: Revert "Avoid defining a 'restrict' macro"Brad King2018-08-0614-40/+40
| | | | | | Revert commit v3.1.0-rc1~255^2~2 (liblzma: Avoid defining a 'restrict' macro, 2014-07-24). We will use another approach to deal with the 'restrict' keyword.
* liblzma: Avoid defining a 'restrict' macroBrad King2014-07-2914-40/+40
| | | | | | | | | | Any "#define restrict ..." line may conflict with MSVC header files that use "__declspec(restrict)". Define our own LZMA_RESTRICT macro in "Utilities/cmliblzma/config.h.in" and transform liblzma code to use it: git grep -lE '\<restrict\>' Utilities/cmliblzma/liblzma | xargs sed -i 's/\<restrict\>/LZMA_RESTRICT/g'
* liblzma: Port from C99 to C89/90Daniel Pfeifer2014-07-2930-350/+490
| | | | | Remove use of designated initializers and declarations of variables after statements. Leave "//" comments as-is for now.
* liblzma: Add CMake build systemDaniel Pfeifer2014-07-231-1/+0
| | | | | Modify sources just enough to build without the full xz common directory.
* liblzma: Remove unused Makefile.* filesBrad King2014-07-231-67/+0
| | | | We will provide our own CMake-based build system.
* Merge branch 'liblzma-upstream' into add-liblzmaBrad King2014-07-2152-0/+7688