Skip to content

Commit

Permalink
chore: update ZLIB_VERSION to 1.3.1
Browse files Browse the repository at this point in the history
Update the ZLIB_VERSION variable from 1.3 to 1.3.1 in build_zlib.sh
scripts for versions 3.10, 3.11, and 3.12 for both x86 and x86_64
architectures to use the latest zlib version available at
https://www.zlib.net/zlib-1.3.tar.gz
  • Loading branch information
t5scc committed Apr 29, 2024
1 parent efa1351 commit 225f9fc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 3.10/x86/deplib/build_zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# dynamic linking libz.so and libz.so.1 are required.

set -e
export ZLIB_VERSION=1.3
export ZLIB_VERSION=1.3.1

wget https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz
tar -xzf zlib-${ZLIB_VERSION}.tar.gz && cd zlib-${ZLIB_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion 3.10/x86_64/deplib/build_zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# dynamic linking libz.so and libz.so.1 are required.

set -e
export ZLIB_VERSION=1.3
export ZLIB_VERSION=1.3.1

wget https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz
tar -xzf zlib-${ZLIB_VERSION}.tar.gz && cd zlib-${ZLIB_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion 3.11/x86/deplib/build_zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# dynamic linking libz.so and libz.so.1 are required.

set -e
export ZLIB_VERSION=1.3
export ZLIB_VERSION=1.3.1

wget https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz
tar -xzf zlib-${ZLIB_VERSION}.tar.gz && cd zlib-${ZLIB_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion 3.11/x86_64/deplib/build_zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# dynamic linking libz.so and libz.so.1 are required.

set -e
export ZLIB_VERSION=1.3
export ZLIB_VERSION=1.3.1

wget https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz
tar -xzf zlib-${ZLIB_VERSION}.tar.gz && cd zlib-${ZLIB_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion 3.12/x86/deplib/build_zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# dynamic linking libz.so and libz.so.1 are required.

set -e
export ZLIB_VERSION=1.3
export ZLIB_VERSION=1.3.1

wget https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz
tar -xzf zlib-${ZLIB_VERSION}.tar.gz && cd zlib-${ZLIB_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion 3.12/x86_64/deplib/build_zlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# dynamic linking libz.so and libz.so.1 are required.

set -e
export ZLIB_VERSION=1.3
export ZLIB_VERSION=1.3.1

wget https://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz
tar -xzf zlib-${ZLIB_VERSION}.tar.gz && cd zlib-${ZLIB_VERSION}
Expand Down

0 comments on commit 225f9fc

Please sign in to comment.