summaryrefslogtreecommitdiffstats
path: root/Utilities/cmliblzma/config.h.in
Commit message (Collapse)AuthorAgeFilesLines
* liblzma: Avoid defining a 'restrict' macroBrad King2014-07-291-2/+4
| | | | | | | | | | 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: Add CMake build systemDaniel Pfeifer2014-07-231-0/+283
Modify sources just enough to build without the full xz common directory.