Skip to content

Commit 277a016

Browse files
committed
Merge branch 'PHP-8.4' into PHP-8.5
* PHP-8.4: ext/gd: phpinfo() to be able to display libjpeg 10.0 support.
2 parents e0ac74f + e257c08 commit 277a016

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ PHP NEWS
99
- Bz2:
1010
. Fix truncation of total output size causing erroneous errors. (ndossche)
1111

12+
- GD:
13+
. Fixed bug GH-21431 (phpinfo() to display libJPEG 10.0 support).
14+
(David Carlier)
15+
1216
- Opcache:
1317
. Fixed bug GH-21052 (Preloaded constant erroneously propagated to file-cached
1418
script). (ilutov)

ext/gd/libgd/gd_jpeg.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@ const char * gdJpegGetVersionString()
125125
return "9 compatible";
126126
break;
127127

128+
case 100:
129+
return "10 compatible";
130+
break;
131+
128132
default:
129133
return "unknown";
130134
}

0 commit comments

Comments
 (0)