Skip to content
Open
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 ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ See docs/process.md for more on how version tagging works.
emscripten. If you still need to support extremely old browsers, you can
manually transpile the output of emscripten (e.g. using babel for JS and
binaryen for wasm). (#26677)
- libpng port updated from 1.6.55 to 1.6.56. (#26592)
- libpng port updated from 1.6.55 to 1.6.58. (#26592 and #26983)
- The `-m64` compiler flag is now honored, and works as an alias for
`-sMEMORY64` and/or `--target=wasm64`. (#26765)
- The autopersistence feature in IDBFS mount now supports registering a global
Expand Down
2 changes: 1 addition & 1 deletion test/third_party/libpng/pngtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -2028,4 +2028,4 @@ main(void)
#endif

/* Generate a compiler error if there is an old png.h in the search path. */
typedef png_libpng_version_1_6_56 Your_png_h_is_not_version_1_6_56;
typedef png_libpng_version_1_6_58 Your_png_h_is_not_version_1_6_58;
5 changes: 3 additions & 2 deletions tools/ports/libpng.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
import os
import shutil

TAG = '1.6.56'
HASH = 'e9b7c90e5b29d877e0c0888fe35e5498ae513619943728d7a05269b261786c476808df06de460ec27f6d045cf7193a5e3656b95c553539b4edcdd2fd0c5fa422'
TAG = '1.6.58'
# Emscripten maintainers, could you please upload this to your cache? Thanks.
HASH = '177d81fd1ba1a46ff64da7f24260814876bd0a27ee5bed6dc9dbdd1fe28f3a67cb6f11c74a68f8380a9a7ab0d95c0022b847b1a3e4d939f2a562274627205789'

deps = ['zlib']
variants = {
Expand Down
Loading