mirror of
https://github.com/opencv/opencv.git
synced 2024-12-03 00:10:21 +08:00
85923c8f30
Update zlib-ng to 2.2.1 #26113 Release: https://github.com/zlib-ng/zlib-ng/releases/tag/2.2.1 ARM diagnostics patch: https://github.com/zlib-ng/zlib-ng/pull/1774 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
#include <winver.h>
|
|
#include "zlib-ng.h"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION ZLIBNG_VER_MAJOR,ZLIBNG_VER_MINOR,ZLIBNG_VER_REVISION,0
|
|
PRODUCTVERSION ZLIBNG_VER_MAJOR,ZLIBNG_VER_MINOR,ZLIBNG_VER_REVISION,0
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 1
|
|
#else
|
|
FILEFLAGS 0
|
|
#endif
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE 0 // not used
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
//language ID = U.S. English, char set = Windows, Multilingual
|
|
BEGIN
|
|
VALUE "FileDescription", "zlib data compression library\0"
|
|
VALUE "FileVersion", ZLIBNG_VERSION "\0"
|
|
VALUE "InternalName", "zlib-ng1.dll\0"
|
|
VALUE "LegalCopyright", "(C) 1995-2024 Jean-loup Gailly & Mark Adler\0"
|
|
VALUE "OriginalFilename", "zlib-ng1.dll\0"
|
|
VALUE "ProductName", "zlib\0"
|
|
VALUE "ProductVersion", ZLIBNG_VERSION "\0"
|
|
VALUE "Comments", "For more information visit https://www.zlib.net/\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0409, 1252
|
|
END
|
|
END
|