From: Przemyslaw Skibinski Date: Tue, 17 Jan 2017 11:40:06 +0000 (+0100) Subject: added "Makefile is validated" X-Git-Tag: v1.1.3^2~23^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d72f4b6b7a7c06f61233942b2cef1f5eded9e246;p=thirdparty%2Fzstd.git added "Makefile is validated" --- diff --git a/lib/Makefile b/lib/Makefile index efd3b87fe..01b4183c8 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,11 +1,13 @@ -# ################################################################ +# ########################################################################## # Copyright (c) 2016-present, Yann Collet, Facebook, Inc. # All rights reserved. # +# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets +# # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. An additional grant # of patent rights can be found in the PATENTS file in the same directory. -# ################################################################ +# ########################################################################## # Version numbers LIBVER_MAJOR_SCRIPT:=`sed -n '/define ZSTD_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./zstd.h` diff --git a/lib/zstd.h b/lib/zstd.h index 333feff7d..c31fea98d 100644 --- a/lib/zstd.h +++ b/lib/zstd.h @@ -370,7 +370,7 @@ typedef struct { typedef struct { unsigned contentSizeFlag; /**< 1: content size will be in frame header (if known). */ - unsigned checksumFlag; /**< 1: will generate a 22-bits checksum at end of frame, to be used for error detection by decompressor */ + unsigned checksumFlag; /**< 1: will generate a 32-bits checksum at end of frame, to be used for error detection by decompressor */ unsigned noDictIDFlag; /**< 1: no dict ID will be saved into frame header (if dictionary compression) */ } ZSTD_frameParameters; diff --git a/programs/Makefile b/programs/Makefile index 15ae01096..a4c149a07 100644 --- a/programs/Makefile +++ b/programs/Makefile @@ -2,6 +2,8 @@ # Copyright (c) 2016-present, Yann Collet, Facebook, Inc. # All rights reserved. # +# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets +# # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. An additional grant # of patent rights can be found in the PATENTS file in the same directory. diff --git a/tests/Makefile b/tests/Makefile index c080fe34a..eadb1a673 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -2,6 +2,8 @@ # Copyright (c) 2016-present, Yann Collet, Facebook, Inc. # All rights reserved. # +# This Makefile is validated for Linux, macOS, *BSD, Hurd, Solaris, MSYS2 targets +# # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. An additional grant # of patent rights can be found in the PATENTS file in the same directory.