Skip to content

Commit 4af36cf

Browse files
authored
1 parent 02ed7d7 commit 4af36cf

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ See docs/process.md for more on how version tagging works.
3939
you can export them by adding them to `-sEXPORTED_RUNTIME_METHODS`. For
4040
example, `-sEXPORTED_RUNTIME_METHODS=HEAP8,HEAPU32` (if you need `HEAP8` and
4141
`HEAPU32`). (#24079)
42+
- libjpeg port updated from 9c to 9f. (#24085)
4243

4344
4.0.6 - 03/26/25
4445
----------------

tools/ports/libjpeg.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55

66
import os
77

8-
VERSION = '9c'
9-
HASH = 'b2affe9a1688bd49fc033f4682c4a242d4ee612f1affaef532f5adcb4602efc4433c4a52a4b3d69e7440ff1f6413b1b041b419bc90efd6d697999961a9a6afb7'
8+
VERSION = '9f'
9+
HASH = '7f733d79cf176c690dcf127352f9aa7ec48000455944f286faae606cdeada6f6865b4a3f9f01bda8947b5b1089bb3e52d2b56879b6e871279ec5cbd1829304dc'
1010

1111

1212
def needed(settings):
1313
return settings.USE_LIBJPEG
1414

1515

1616
def get(ports, settings, shared):
17-
# Archive mirrored from http://www.ijg.org/files/jpegsrc.v9c.tar.gz.
17+
# Archive mirrored from http://www.ijg.org/files/jpegsrc.v9f.tar.gz.
1818
# We have issues where python urllib was not able to load from the www.ijg.org webserver
1919
# and was resulting in 403: Forbidden.
2020
ports.fetch_project('libjpeg', f'https://storage.googleapis.com/webassembly/emscripten-ports/jpegsrc.v{VERSION}.tar.gz', sha512hash=HASH)
@@ -24,7 +24,7 @@ def create(final):
2424
ports.write_file(os.path.join(source_path, 'jconfig.h'), jconfig_h)
2525
ports.install_headers(source_path)
2626
excludes = [
27-
'ansi2knr.c', 'cjpeg.c', 'ckconfig.c', 'djpeg.c', 'example.c',
27+
'ansi2knr.c', 'cjpeg.c', 'cjpegalt.c', 'ckconfig.c', 'djpeg.c', 'djpegalt.c', 'example.c',
2828
'jmemansi.c', 'jmemdos.c', 'jmemmac.c', 'jmemname.c',
2929
'jpegtran.c', 'rdjpgcom.c', 'wrjpgcom.c',
3030
]

0 commit comments

Comments
 (0)