Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade zlib #1222

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zlib/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version 1.2.11, January 15th, 2017
version 1.2.12, January 15th, 2017

Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler

Expand Down
2 changes: 1 addition & 1 deletion zlib/deflate.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ int x86_check_features() { return 0; }
#endif

const char deflate_copyright[] =
" deflate 1.2.11 Copyright 1995-2017 Jean-loup Gailly and Mark Adler ";
" deflate 1.2.12 Copyright 1995-2017 Jean-loup Gailly and Mark Adler ";
/*
If you use the zlib library in a product, an acknowledgment is welcome
in the documentation of your product. If for some reason you cannot
Expand Down
2 changes: 1 addition & 1 deletion zlib/inftrees.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define MAXBITS 15

const char inflate_copyright[] =
" inflate 1.2.11 Copyright 1995-2017 Mark Adler ";
" inflate 1.2.12 Copyright 1995-2017 Mark Adler ";
/*
If you use the zlib library in a product, an acknowledgment is welcome
in the documentation of your product. If for some reason you cannot
Expand Down
2 changes: 1 addition & 1 deletion zlib/simd.patch
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ index 1ec761448de9..aa0c9c67a6dc 100644
+#include "x86.h"

const char deflate_copyright[] =
" deflate 1.2.11 Copyright 1995-2017 Jean-loup Gailly and Mark Adler ";
" deflate 1.2.12 Copyright 1995-2017 Jean-loup Gailly and Mark Adler ";
@@ -86,7 +87,7 @@ local block_state deflate_huff OF((deflate_state *s, int flush));
local void lm_init OF((deflate_state *s));
local void putShortMSB OF((deflate_state *s, uInt b));
Expand Down
2 changes: 1 addition & 1 deletion zlib/zlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
extern "C" {
#endif

#define ZLIB_VERSION "1.2.11"
#define ZLIB_VERSION "1.2.12"
#define ZLIB_VERNUM 0x12b0
#define ZLIB_VER_MAJOR 1
#define ZLIB_VER_MINOR 2
Expand Down
Loading