updated license & header dates
This commit is contained in:
parent
51976dcb24
commit
87a80acbe7
@ -36,7 +36,7 @@ BEGIN
|
|||||||
VALUE "FileDescription", "Extremely fast compression"
|
VALUE "FileDescription", "Extremely fast compression"
|
||||||
VALUE "FileVersion", LZ4_VERSION_STRING
|
VALUE "FileVersion", LZ4_VERSION_STRING
|
||||||
VALUE "InternalName", "lz4.dll"
|
VALUE "InternalName", "lz4.dll"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016, Yann Collet"
|
VALUE "LegalCopyright", "Copyright (C) 2013-2020, Yann Collet"
|
||||||
VALUE "OriginalFilename", "lz4.dll"
|
VALUE "OriginalFilename", "lz4.dll"
|
||||||
VALUE "ProductName", "LZ4"
|
VALUE "ProductName", "LZ4"
|
||||||
VALUE "ProductVersion", LZ4_VERSION_STRING
|
VALUE "ProductVersion", LZ4_VERSION_STRING
|
||||||
|
@ -36,7 +36,7 @@ BEGIN
|
|||||||
VALUE "FileDescription", "Extremely fast compression"
|
VALUE "FileDescription", "Extremely fast compression"
|
||||||
VALUE "FileVersion", LZ4_VERSION_STRING
|
VALUE "FileVersion", LZ4_VERSION_STRING
|
||||||
VALUE "InternalName", "lz4.exe"
|
VALUE "InternalName", "lz4.exe"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016, Yann Collet"
|
VALUE "LegalCopyright", "Copyright (C) 2013-2020, Yann Collet"
|
||||||
VALUE "OriginalFilename", "lz4.exe"
|
VALUE "OriginalFilename", "lz4.exe"
|
||||||
VALUE "ProductName", "LZ4"
|
VALUE "ProductName", "LZ4"
|
||||||
VALUE "ProductVersion", LZ4_VERSION_STRING
|
VALUE "ProductVersion", LZ4_VERSION_STRING
|
||||||
|
@ -36,7 +36,7 @@ BEGIN
|
|||||||
VALUE "FileDescription", "Extremely fast compression"
|
VALUE "FileDescription", "Extremely fast compression"
|
||||||
VALUE "FileVersion", LZ4_VERSION_STRING
|
VALUE "FileVersion", LZ4_VERSION_STRING
|
||||||
VALUE "InternalName", "lz4.dll"
|
VALUE "InternalName", "lz4.dll"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016, Yann Collet"
|
VALUE "LegalCopyright", "Copyright (C) 2013-2020, Yann Collet"
|
||||||
VALUE "OriginalFilename", "lz4.dll"
|
VALUE "OriginalFilename", "lz4.dll"
|
||||||
VALUE "ProductName", "LZ4"
|
VALUE "ProductName", "LZ4"
|
||||||
VALUE "ProductVersion", LZ4_VERSION_STRING
|
VALUE "ProductVersion", LZ4_VERSION_STRING
|
||||||
|
@ -36,7 +36,7 @@ BEGIN
|
|||||||
VALUE "FileDescription", "Extremely fast compression"
|
VALUE "FileDescription", "Extremely fast compression"
|
||||||
VALUE "FileVersion", LZ4_VERSION_STRING
|
VALUE "FileVersion", LZ4_VERSION_STRING
|
||||||
VALUE "InternalName", "lz4.exe"
|
VALUE "InternalName", "lz4.exe"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016, Yann Collet"
|
VALUE "LegalCopyright", "Copyright (C) 2013-2020, Yann Collet"
|
||||||
VALUE "OriginalFilename", "lz4.exe"
|
VALUE "OriginalFilename", "lz4.exe"
|
||||||
VALUE "ProductName", "LZ4"
|
VALUE "ProductName", "LZ4"
|
||||||
VALUE "ProductVersion", LZ4_VERSION_STRING
|
VALUE "ProductVersion", LZ4_VERSION_STRING
|
||||||
|
@ -3,7 +3,7 @@ LZ4 Frame Format Description
|
|||||||
|
|
||||||
### Notices
|
### Notices
|
||||||
|
|
||||||
Copyright (c) 2013-2015 Yann Collet
|
Copyright (c) 2013-2020 Yann Collet
|
||||||
|
|
||||||
Permission is granted to copy and distribute this document
|
Permission is granted to copy and distribute this document
|
||||||
for any purpose and without charge,
|
for any purpose and without charge,
|
||||||
|
@ -35,7 +35,8 @@
|
|||||||
</b></pre><BR>
|
</b></pre><BR>
|
||||||
<pre><b>const char* LZ4F_getErrorName(LZ4F_errorCode_t code); </b>/**< return error code string; for debugging */<b>
|
<pre><b>const char* LZ4F_getErrorName(LZ4F_errorCode_t code); </b>/**< return error code string; for debugging */<b>
|
||||||
</b></pre><BR>
|
</b></pre><BR>
|
||||||
<a name="Chapter4"></a><h2>Frame compression types</h2><pre></pre>
|
<a name="Chapter4"></a><h2>Frame compression types</h2><pre>
|
||||||
|
<BR></pre>
|
||||||
|
|
||||||
<pre><b>typedef enum {
|
<pre><b>typedef enum {
|
||||||
LZ4F_default=0,
|
LZ4F_default=0,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ##########################################################################
|
# ##########################################################################
|
||||||
# LZ4 examples - Makefile
|
# LZ4 examples - Makefile
|
||||||
# Copyright (C) Yann Collet 2011-2014
|
# Copyright (C) Yann Collet 2011-2020
|
||||||
#
|
#
|
||||||
# GPL v2 License
|
# GPL v2 License
|
||||||
#
|
#
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
LZ4 Library
|
LZ4 Library
|
||||||
Copyright (c) 2011-2016, Yann Collet
|
Copyright (c) 2011-2020, Yann Collet
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ################################################################
|
# ################################################################
|
||||||
# LZ4 library - Makefile
|
# LZ4 library - Makefile
|
||||||
# Copyright (C) Yann Collet 2011-2016
|
# Copyright (C) Yann Collet 2011-2020
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets
|
# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ##########################################################################
|
# ##########################################################################
|
||||||
# LZ4 programs - Makefile
|
# LZ4 programs - Makefile
|
||||||
# Copyright (C) Yann Collet 2016
|
# Copyright (C) Yann Collet 2016-2020
|
||||||
#
|
#
|
||||||
# GPL v2 License
|
# GPL v2 License
|
||||||
#
|
#
|
||||||
|
@ -22,7 +22,7 @@ BEGIN
|
|||||||
VALUE "FileDescription", "Extremely fast compression"
|
VALUE "FileDescription", "Extremely fast compression"
|
||||||
VALUE "FileVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
VALUE "FileVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
||||||
VALUE "InternalName", "@LIBLZ4@"
|
VALUE "InternalName", "@LIBLZ4@"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016, Yann Collet"
|
VALUE "LegalCopyright", "Copyright (C) 2013-2020, Yann Collet"
|
||||||
VALUE "OriginalFilename", "@LIBLZ4@.dll"
|
VALUE "OriginalFilename", "@LIBLZ4@.dll"
|
||||||
VALUE "ProductName", "LZ4"
|
VALUE "ProductName", "LZ4"
|
||||||
VALUE "ProductVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
VALUE "ProductVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# LZ4 - Fast LZ compression algorithm
|
# LZ4 - Fast LZ compression algorithm
|
||||||
# Copyright (C) 2011-2014, Yann Collet.
|
# Copyright (C) 2011-2020, Yann Collet.
|
||||||
# BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
# BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
||||||
|
|
||||||
prefix=@PREFIX@
|
prefix=@PREFIX@
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
LZ4 auto-framing library
|
LZ4 auto-framing library
|
||||||
Header File
|
Header File
|
||||||
Copyright (C) 2011-2017, Yann Collet.
|
Copyright (C) 2011-2020, Yann Collet.
|
||||||
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
LZ4 auto-framing library
|
LZ4 auto-framing library
|
||||||
Header File for static linking only
|
Header File for static linking only
|
||||||
Copyright (C) 2011-2016, Yann Collet.
|
Copyright (C) 2011-2020, Yann Collet.
|
||||||
|
|
||||||
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
LZ4 HC - High Compression Mode of LZ4
|
LZ4 HC - High Compression Mode of LZ4
|
||||||
Copyright (C) 2011-2017, Yann Collet.
|
Copyright (C) 2011-2020, Yann Collet.
|
||||||
|
|
||||||
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
LZ4 HC - High Compression Mode of LZ4
|
LZ4 HC - High Compression Mode of LZ4
|
||||||
Header File
|
Header File
|
||||||
Copyright (C) 2011-2017, Yann Collet.
|
Copyright (C) 2011-2020, Yann Collet.
|
||||||
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ##########################################################################
|
# ##########################################################################
|
||||||
# LZ4 programs - Makefile
|
# LZ4 programs - Makefile
|
||||||
# Copyright (C) Yann Collet 2011-2017
|
# Copyright (C) Yann Collet 2011-2020
|
||||||
#
|
#
|
||||||
# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets
|
# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets
|
||||||
#
|
#
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
bench.c - Demo program to benchmark open-source compression algorithms
|
bench.c - Demo program to benchmark open-source compression algorithms
|
||||||
Copyright (C) Yann Collet 2012-2016
|
Copyright (C) Yann Collet 2012-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
bench.h - Demo program to benchmark open-source compression algorithm
|
bench.h - Demo program to benchmark open-source compression algorithm
|
||||||
Copyright (C) Yann Collet 2012-2016
|
Copyright (C) Yann Collet 2012-2020
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
datagen.c - compressible data generator test tool
|
datagen.c - compressible data generator test tool
|
||||||
Copyright (C) Yann Collet 2012-2016
|
Copyright (C) Yann Collet 2012-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
datagen.h - compressible data generator header
|
datagen.h - compressible data generator header
|
||||||
Copyright (C) Yann Collet 2012-2016
|
Copyright (C) Yann Collet 2012-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ FILETYPE 1
|
|||||||
VALUE "FileDescription", "Extremely fast compression"
|
VALUE "FileDescription", "Extremely fast compression"
|
||||||
VALUE "FileVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
VALUE "FileVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
||||||
VALUE "InternalName", "@PROGNAME@"
|
VALUE "InternalName", "@PROGNAME@"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2013-2016, Yann Collet"
|
VALUE "LegalCopyright", "Copyright (C) 2013-2020, Yann Collet"
|
||||||
VALUE "OriginalFilename", "@PROGNAME@.@EXT@"
|
VALUE "OriginalFilename", "@PROGNAME@.@EXT@"
|
||||||
VALUE "ProductName", "LZ4"
|
VALUE "ProductName", "LZ4"
|
||||||
VALUE "ProductVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
VALUE "ProductVersion", "@LIBVER_MAJOR@.@LIBVER_MINOR@.@LIBVER_PATCH@.0"
|
||||||
@ -24,4 +24,3 @@ FILETYPE 1
|
|||||||
VALUE "Translation", 0x0409, 1200
|
VALUE "Translation", 0x0409, 1200
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
LZ4cli - LZ4 Command Line Interface
|
LZ4cli - LZ4 Command Line Interface
|
||||||
Copyright (C) Yann Collet 2011-2016
|
Copyright (C) Yann Collet 2011-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
LZ4io.c - LZ4 File/Stream Interface
|
LZ4io.c - LZ4 File/Stream Interface
|
||||||
Copyright (C) Yann Collet 2011-2017
|
Copyright (C) Yann Collet 2011-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
LZ4io.h - LZ4 File/Stream Interface
|
LZ4io.h - LZ4 File/Stream Interface
|
||||||
Copyright (C) Yann Collet 2011-2016
|
Copyright (C) Yann Collet 2011-2020
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
platform.h - compiler and OS detection
|
platform.h - compiler and OS detection
|
||||||
Copyright (C) 2016-present, Przemyslaw Skibinski, Yann Collet
|
Copyright (C) 2016-2020, Przemyslaw Skibinski, Yann Collet
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
util.h - utility functions
|
util.h - utility functions
|
||||||
Copyright (C) 2016-present, Przemyslaw Skibinski, Yann Collet
|
Copyright (C) 2016-2020, Przemyslaw Skibinski, Yann Collet
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
checkFrame - verify frame headers
|
checkFrame - verify frame headers
|
||||||
Copyright (C) Yann Collet 2014-present
|
Copyright (C) Yann Collet 2014-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
checkTag.c - Version validation tool for LZ4
|
checkTag.c - Version validation tool for LZ4
|
||||||
Copyright (C) Yann Collet 2018 - present
|
Copyright (C) Yann Collet 2018-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
datagencli.c
|
datagencli.c
|
||||||
compressible data command line generator
|
compressible data command line generator
|
||||||
Copyright (C) Yann Collet 2012-2016
|
Copyright (C) Yann Collet 2012-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
frameTest - test tool for lz4frame
|
frameTest - test tool for lz4frame
|
||||||
Copyright (C) Yann Collet 2014-2016
|
Copyright (C) Yann Collet 2014-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
bench.c - Demo program to benchmark open-source compression algorithm
|
bench.c - Demo program to benchmark open-source compression algorithm
|
||||||
Copyright (C) Yann Collet 2012-2016
|
Copyright (C) Yann Collet 2012-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
fuzzer.c - Fuzzer test tool for LZ4
|
fuzzer.c - Fuzzer test tool for LZ4
|
||||||
Copyright (C) Yann Collet 2012-2017
|
Copyright (C) Yann Collet 2012-2020
|
||||||
|
|
||||||
GPL v2 License
|
GPL v2 License
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
|
* Copyright (c) 2016-2020, Yann Collet, Facebook, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This source code is licensed under both the BSD-style license (found in the
|
* This source code is licensed under both the BSD-style license (found in the
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env python3
|
#! /usr/bin/env python3
|
||||||
|
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.
|
# Copyright (c) 2016-2020, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# This source code is licensed under the BSD-style license found in the
|
# This source code is licensed under the BSD-style license found in the
|
||||||
|
Loading…
Reference in New Issue
Block a user