summaryrefslogtreecommitdiffstats
path: root/Utilities/cmliblzma/liblzma/simple
Commit message (Collapse)AuthorAgeFilesLines
* liblzma: Avoid possible overflow on signed left shiftBrad King2016-05-251-1/+1
| | | | Use an unsigned value to produce the needed mask.
* liblzma: Avoid defining a 'restrict' macroBrad King2014-07-291-6/+6
| | | | | | | | | | 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-297-25/+46
| | | | | Remove use of designated initializers and declarations of variables after statements. Leave "//" comments as-is for now.
* liblzma: Remove unused Makefile.* filesBrad King2014-07-231-47/+0
| | | | We will provide our own CMake-based build system.
* Merge branch 'liblzma-upstream' into add-liblzmaBrad King2014-07-2114-0/+1143