forked from tianocore/edk2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IntelFrameworkModulePkg LzmaDecompressLib: Update LZMA to new 16.04 v…
…ersion Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao <[email protected]> Reviewed-by: Yonghong Zhu <[email protected]>
- Loading branch information
Showing
19 changed files
with
1,499 additions
and
998 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LZMA-SDK-README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
LzmaCustomDecompressLib is based on the LZMA SDK 4.65. | ||
LZMA SDK 4.65 was placed in the public domain on | ||
2009-02-03. It was released on the | ||
LzmaCustomDecompressLib is based on the LZMA SDK 16.04. | ||
LZMA SDK 16.04 was placed in the public domain on | ||
2016-10-04. It was released on the | ||
http://www.7-zip.org/sdk.html website. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 18 additions & 6 deletions
24
IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/7zVersion.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
#define MY_VER_MAJOR 4 | ||
#define MY_VER_MINOR 65 | ||
#define MY_VER_MAJOR 16 | ||
#define MY_VER_MINOR 04 | ||
#define MY_VER_BUILD 0 | ||
#define MY_VERSION "4.65" | ||
#define MY_DATE "2009-02-03" | ||
#define MY_COPYRIGHT ": Igor Pavlov : Public domain" | ||
#define MY_VERSION_COPYRIGHT_DATE MY_VERSION " " MY_COPYRIGHT " : " MY_DATE | ||
#define MY_VERSION_NUMBERS "16.04" | ||
#define MY_VERSION "16.04" | ||
#define MY_DATE "2016-10-04" | ||
#undef MY_COPYRIGHT | ||
#undef MY_VERSION_COPYRIGHT_DATE | ||
#define MY_AUTHOR_NAME "Igor Pavlov" | ||
#define MY_COPYRIGHT_PD "Igor Pavlov : Public domain" | ||
#define MY_COPYRIGHT_CR "Copyright (c) 1999-2016 Igor Pavlov" | ||
|
||
#ifdef USE_COPYRIGHT_CR | ||
#define MY_COPYRIGHT MY_COPYRIGHT_CR | ||
#else | ||
#define MY_COPYRIGHT MY_COPYRIGHT_PD | ||
#endif | ||
|
||
#define MY_VERSION_COPYRIGHT_DATE MY_VERSION " : " MY_COPYRIGHT " : " MY_DATE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.