| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
* upstream-liblzma:
liblzma 2020-03-17 (2327a461)
|
|
|
|
|
| |
* upstream-liblzma:
liblzma 2018-04-29 (b5be61cc)
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
| |
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'
|
|
|
|
|
| |
Remove use of designated initializers and declarations of variables
after statements. Leave "//" comments as-is for now.
|
|
|